diff options
Diffstat (limited to 'docs/_zh_CN/index.html')
| -rw-r--r-- | docs/_zh_CN/index.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/_zh_CN/index.html b/docs/_zh_CN/index.html index 12cde6c..ad21062 100644 --- a/docs/_zh_CN/index.html +++ b/docs/_zh_CN/index.html @@ -56,13 +56,23 @@ auto2top: true, loadSidebar: true, maxLevel: 0, - subMaxLevel: 3, + subMaxLevel: 0, search: { placeholder: "Search", noData: "No matches found.", depth: 2, }, plugins: [ + function (hook) { + hook.beforeEach(function (content) { + return content + .split("\n") + .filter(function (line) { + return !line.startsWith("@@@"); + }) + .join("\n"); + }); + }, [ "flexible-alerts", { |
