vnote/src/resources/markdown_template.html
2018-08-29 20:47:07 +08:00

50 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<style type="text/css">
/* STYLE_GLOBAL_PLACE_HOLDER */
</style>
<style type="text/css">
@keyframes flash {
0% { color: @template_title_flash_light_fg; }
10% { color: @template_title_flash_dark_fg; }
40% { color: @template_title_flash_dark_fg; }
50% { color: @template_title_flash_light_fg; }
60% { color: @template_title_flash_dark_fg; }
90% { color: @template_title_flash_dark_fg; }
}
.highlighted-anchor {
animation: 1s flash;
}
</style>
<link rel="stylesheet" type="text/css" href="qrc:/resources/common.css">
<link rel="stylesheet" type="text/css" href="qrc:/resources/view_image.css">
<link rel="stylesheet" type="text/css" href="CSS_PLACE_HOLDER">
<link rel="stylesheet" type="text/css" href="HIGHLIGHTJS_CSS_PLACE_HOLDER">
<script src="qrc:/resources/qwebchannel.js"></script>
<script src="qrc:/utils/highlightjs/highlight.pack.js"></script>
<!-- EXTRA_PLACE_HOLDER -->
<script src="JS_PLACE_HOLDER" defer></script>
<script src="qrc:/resources/view_image.js" defer></script>
<script src="qrc:/resources/markdown_template.js" defer></script>
</head>
<body>
<div id="content-div"></div>
<div id="image-view-div" class="modal-box">
<span id="image-view-close" class="modal-close">&times;</span>
<img id="image-view" class="modal-content">
</div>
<div id="preview-div" style="display:none;"></div>
<div id="inplace-preview-div" style="display:none;"></div>
<div id="text-html-div" style="display:none;"></div>
</body>
</html>