Stackedit/public/viewer.html

31 lines
1.2 KiB
HTML
Raw Normal View History

2013-10-19 22:59:17 +00:00
<!DOCTYPE html>
<html manifest="cache.manifest">
2014-04-14 00:21:06 +00:00
2013-10-19 22:59:17 +00:00
<head>
<title>StackEdit Viewer</title>
<link rel="canonical" href="https://stackedit.io/viewer">
<link rel="icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
2014-01-21 23:48:42 +00:00
<meta name="description" content="Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.">
2013-10-19 22:59:17 +00:00
<meta name="author" content="Benoit Schweblin">
2014-04-14 23:32:10 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
2013-10-19 22:59:17 +00:00
<meta name="msvalidate.01" content="5E47EE6F67B069C17E3CDD418351A612"
/>
<script>
// Use ?debug to serve original JavaScript files instead of minified
2013-11-05 23:03:38 +00:00
window.baseDir = 'res';
2013-10-19 22:59:17 +00:00
if (!/(\?|&)debug($|&)/.test(location.search)) {
2013-11-05 23:03:38 +00:00
window.baseDir += '-min';
2013-10-19 22:59:17 +00:00
}
2013-11-05 23:03:38 +00:00
window.require = {
baseUrl: window.baseDir,
2013-10-19 22:59:17 +00:00
deps: ['main']
};
</script>
<script src="res-min/require.js"></script>
</head>
2014-04-14 00:21:06 +00:00
2013-10-19 22:59:17 +00:00
<body class="viewer"></body>
</html>