mirror of
https://github.com/suk-ws/ph-Bookshelf.git
synced 2025-01-19 07:22:26 +08:00
Eyre_S
57915682ee
为旧的标题策略做出兼容: 当这个功能开启时,如果输出检测到markdown内没有填入一级标题,则会自动以 book.xml 中声明的页面标题生成一级标题。 添加的配置: - 旧的页面标题策略兼容 : 默认 false,可选 true - 代码块背景色 : 默认跟随样式表fallback,可填任意 css 支持颜色 - 代码块 highlight.js 高亮 : 默认 true,可选 false - highlight.js 主题 : 默认 atom-one-dark,可填任意字符串(但是没有对应主题会无法使用 - 彩虹列表标记效果 : 默认 false,可选 true
23 lines
643 B
PHP
23 lines
643 B
PHP
<?php require_once "./src/Data/SiteMeta.php" ?>
|
|
<?php require_once "./src/Data/PageMeta.php" ?>
|
|
|
|
<!-- Assets(js) -->
|
|
<?php
|
|
foreach (SiteMeta::getJavascriptList() as $item) {
|
|
if ($item==null) continue;
|
|
echo "<script src=\"$item\"></script>";
|
|
}
|
|
?>
|
|
<script><?= SiteMeta::getCustomScriptContent("custom") ?></script>
|
|
<script>
|
|
bookCurrentId = "<?= PageMeta::$book->getId() ?>";
|
|
pageCurrentId = "<?= PageMeta::$page->getId() ?>";
|
|
<?php if (!(PageMeta::getConfigurationLevelPage("customization.article.codeblock.highlightjs")=="false")) : ?>
|
|
hljs.highlightAll();
|
|
<?php endif; ?>
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|