bump: 3.4.3

This commit is contained in:
qingwei.li 2017-03-16 08:50:51 +08:00
commit dd7d9aa4ad
13 changed files with 21 additions and 2 deletions

View file

@ -2995,13 +2995,13 @@ renderer.heading = function (text, level) {
var nextToc = { level: level, title: text };
if (/{docsify-ignore}/g.test(text)) {
text = text.replace('{docsify-ignore}','');
text = text.replace('{docsify-ignore}', '');
nextToc.title = text;
nextToc.ignoreSubHeading = true;
}
if (/{docsify-ignore-all}/g.test(text)) {
text = text.replace('{docsify-ignore-all}','');
text = text.replace('{docsify-ignore-all}', '');
nextToc.title = text;
nextToc.ignoreAllSubs = true;
}