Skip to content

Commit dd7d9aa

Browse files
committed
bump: 3.4.3
1 parent bba957d commit dd7d9aa

13 files changed

+21
-2
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
# 3.4.3 / 2017-03-16
3+
==================
4+
5+
* Add ability to ignore headers when generating toc ([#127](https://github.com/QingWei-Li/docsify/issues/127) [@christopherwk210](https://github.com/christopherwk210))
6+
* fix external-script not inserting script at right place [@Leopoldthecoder](https://github.com/Leopoldthecoder)
7+
* add German docs [@jrappen](https://github.com/jrappen)
8+
29
# 3.4.2 / 2017-03-11
310

411
* feat(emojify): add no-emoji option

Diff for: lib/docsify.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2995,13 +2995,13 @@ renderer.heading = function (text, level) {
29952995
var nextToc = { level: level, title: text };
29962996

29972997
if (/{docsify-ignore}/g.test(text)) {
2998-
text = text.replace('{docsify-ignore}','');
2998+
text = text.replace('{docsify-ignore}', '');
29992999
nextToc.title = text;
30003000
nextToc.ignoreSubHeading = true;
30013001
}
30023002

30033003
if (/{docsify-ignore-all}/g.test(text)) {
3004-
text = text.replace('{docsify-ignore-all}','');
3004+
text = text.replace('{docsify-ignore-all}', '');
30053005
nextToc.title = text;
30063006
nextToc.ignoreAllSubs = true;
30073007
}

Diff for: lib/docsify.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/plugins/emoji.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/plugins/external-script.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/plugins/front-matter.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: lib/plugins/ga.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)