Releases: naokazuterada/MarkdownTOC
Releases · naokazuterada/MarkdownTOC
2.3.2
2.3.1
2.3.0
Changes
- Add
URI encoding
feature (Read more in document) - Change
default_lowercase_only_ascii
default value (false
totrue
) because it breaks link in Russian
2.2.1
2.2.0
Changes
- Add 'logging' option in 'Package Settings'
Notice
If you are developper, please this option true
to enable logging in console.
2.1.2
Changes
- Fix anchoring problem with '_' > more detail
2.1.1
Changes
- Improved ATX headings
- Extra spaces processing in headings
- Removing of closing sequence of # characters
- Allow not only chars but strings in id_replacement
2.1.0
Changes
- Add
lowercase_only_ascii
feature
The plugin lowercase all alphabets within auto link ids default.
<!-- MarkdownTOC autolink=true -->
- [ПРИМЕР EXAMPLE][пример-example]
<!-- /MarkdownTOC -->
# ПРИМЕР EXAMPLE
But you can also squeeze its target only ascii alphabets(a
to z
) with lowercase_only_ascii=true
attribute.
<!-- MarkdownTOC autolink=true lowercase_only_ascii=true -->
- [ПРИМЕР EXAMPLE][ПРИМЕР-example]
<!-- /MarkdownTOC -->
# ПРИМЕР EXAMPLE
2.0.0
Changes
- Enable HTML-like attribute style
- Remove compatibility to SublimeText2
Until 1.8.0, you have to write like below.
<!-- MarkdownTOC depth=5 -->
<!-- /MarkdownTOC -->
Now you can write something like below.
<!-- MarkdownTOC depth=5 -->
<!-- /MarkdownTOC -->
<!-- MarkdownTOC depth="5" -->
<!-- /MarkdownTOC -->
<!-- MarkdownTOC depth='5' -->
<!-- /MarkdownTOC -->
1.8.1
This is the last ST2 compatible version.
Changes
- Fix list format algorithm