We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e98f9 commit 00f56f2Copy full SHA for 00f56f2
src/core/render/compiler.js
@@ -216,7 +216,7 @@ export class Compiler {
216
217
if (/{docsify-ignore}/g.test(str)) {
218
str = str.replace('{docsify-ignore}', '');
219
- nextToc.title = str;
+ nextToc.title = removeAtag(str);
220
nextToc.ignoreSubHeading = true;
221
}
222
@@ -228,7 +228,7 @@ export class Compiler {
228
229
if (/{docsify-ignore-all}/g.test(str)) {
230
str = str.replace('{docsify-ignore-all}', '');
231
232
nextToc.ignoreAllSubs = true;
233
234
0 commit comments