2013-03-24 14:54:26 +00:00
<!DOCTYPE html>
2013-03-31 14:11:07 +00:00
< html manifest = "cache.manifest" >
2013-03-24 14:54:26 +00:00
< head >
2013-05-04 00:05:58 +00:00
< title > StackEdit - Markdown editor< / title >
2013-06-23 20:41:24 +00:00
< link rel = "canonical" href = "http://benweet.github.io/stackedit/" >
2013-03-31 14:11:07 +00:00
< link rel = "icon" href = "img/stackedit-32.ico" type = "image/x-icon" >
< link rel = "shortcut icon" href = "img/stackedit-32.ico"
2013-03-26 22:41:37 +00:00
type="image/x-icon">
2013-04-10 18:14:59 +00:00
< meta name = "description"
content="StackEdit is a free, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.">
2013-04-07 15:22:13 +00:00
< meta name = "author" content = "Benoit Schweblin" >
2013-03-24 14:54:26 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
2013-05-18 13:42:40 +00:00
< meta name = "msvalidate.01" content = "5E47EE6F67B069C17E3CDD418351A612" / >
2013-04-13 13:15:27 +00:00
< script >
2013-06-16 10:47:35 +00:00
// Use http://.../?debug to serve original CSS/JavaScript files instead of minified
var suffix = "";
if(!location.search.match(/(\?|& )debug/)) {
suffix = "-min";
}
2013-08-04 00:53:46 +00:00
//document.write('< link href = "css/main' + suffix + '.css" rel = "stylesheet" > ');
2013-06-16 10:47:35 +00:00
var theme = localStorage.theme;
if(theme) {
2013-08-04 00:53:46 +00:00
//document.write('< link href = "themes/' + theme + '/' + theme + '.css" rel = "stylesheet" > ');
2013-06-16 10:47:35 +00:00
}
var require = {
baseUrl: "js",
deps: [
"main" + suffix
]
};
var viewerMode = false;
2013-04-13 13:15:27 +00:00
< / script >
2013-06-02 00:38:23 +00:00
< script src = "js/libs/require.js" > < / script >
2013-03-24 14:54:26 +00:00
< / head >
< body >
2013-08-04 00:53:46 +00:00
2013-03-24 14:54:26 +00:00
< / body >
2013-03-24 23:21:55 +00:00
< / html >