mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 22:09:52 +08:00
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<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="placeholder"></div>
|
|
|
|
<div id="text-to-html-div" style="display:none;"></div>
|
|
</body>
|
|
</html>
|