mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 22:09:52 +08:00
42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<head>
|
|
<style type="text/css">
|
|
/* BACKGROUND_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="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/markdown_template.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div id="content-div"></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>
|