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
27 lines
688 B
PHP
27 lines
688 B
PHP
<?php
|
|
|
|
require_once "./src/Utils/ParsedownExtend.php";
|
|
require_once "./src/Data/PageMeta.php";
|
|
|
|
$parser = new ParsedownExtend();
|
|
|
|
$parser->setMarkupEscaped(false);
|
|
$parser->setSafeMode(false);
|
|
|
|
$pageMarkdownContent = PageMeta::$page->getMarkdownContent();
|
|
|
|
if (PageMeta::compatibilityOldTitlePolicy()) {
|
|
$length = strlen($pageMarkdownContent);
|
|
for ($i=0; $i<$length; $i++) {
|
|
if (empty(trim($pageMarkdownContent[$i]))) {
|
|
continue;
|
|
} else if ($pageMarkdownContent[$i] == '#' && $pageMarkdownContent[$i+1] != '#') {
|
|
break;
|
|
}
|
|
echo "<h1 id='phb-page-".PageMeta::$page->getId()."'>".PageMeta::$page->getName()."</h1>\n";
|
|
break;
|
|
}
|
|
}
|
|
|
|
echo $parser->text($pageMarkdownContent);
|