Skip to content

Commit bc203a5

Browse files
authored
Revert "fix: fix docsify-ignore in seach title. (#1872)"
This reverts commit 7fdc484.
1 parent 575f8ec commit bc203a5

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

src/core/util/str.js

-9
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,3 @@ export function startsWith(str, prefix) {
55
export function endsWith(str, suffix) {
66
return str.indexOf(suffix, str.length - suffix.length) !== -1;
77
}
8-
9-
export function removeDocsifyIgnoreTag(str) {
10-
return str
11-
.replace(/<!-- {docsify-ignore} -->/, '')
12-
.replace(/{docsify-ignore}/, '')
13-
.replace(/<!-- {docsify-ignore-all} -->/, '')
14-
.replace(/{docsify-ignore-all}/, '')
15-
.trim();
16-
}

src/plugins/search/search.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* eslint-disable no-unused-vars */
22
import { getAndRemoveConfig } from '../../core/render/utils';
3-
import { removeDocsifyIgnoreTag } from '../../core/util/str';
43

54
let INDEXS = {};
65

@@ -90,16 +89,19 @@ export function genIndex(path, content = '', router, depth) {
9089
if (token.type === 'heading' && token.depth <= depth) {
9190
const { str, config } = getAndRemoveConfig(token.text);
9291

93-
const text = removeDocsifyIgnoreTag(token.text);
94-
9592
if (config.id) {
9693
slug = router.toURL(path, { id: slugify(config.id) });
9794
} else {
98-
slug = router.toURL(path, { id: slugify(escapeHtml(text)) });
95+
slug = router.toURL(path, { id: slugify(escapeHtml(token.text)) });
9996
}
10097

10198
if (str) {
102-
title = removeDocsifyIgnoreTag(str);
99+
title = str
100+
.replace(/<!-- {docsify-ignore} -->/, '')
101+
.replace(/{docsify-ignore}/, '')
102+
.replace(/<!-- {docsify-ignore-all} -->/, '')
103+
.replace(/{docsify-ignore-all}/, '')
104+
.trim();
103105
}
104106

105107
index[slug] = { slug, title: title, body: '' };

0 commit comments

Comments
 (0)