Skip to content

Releases: naokazuterada/MarkdownTOC

2.3.2

20 Jun 07:44
Compare
Choose a tag to compare

Changes

  • Fix the way of import dependencies
  • Add code coverage on README

Ref: #63

2.3.1

26 May 07:20
Compare
Choose a tag to compare

Changes

  • Allow indentation of blockquates

Ref: #32

2.3.0

04 May 09:09
Compare
Choose a tag to compare

Changes

  • Add URI encoding feature (Read more in document)
  • Change default_lowercase_only_ascii default value (false to true) because it breaks link in Russian

Ref: #79, #56

2.2.1

07 Jan 07:10
Compare
Choose a tag to compare

Changes

  • Improve heading detecting

Ref: #24

2.2.0

07 Jan 06:52
Compare
Choose a tag to compare

Changes

  • Add 'logging' option in 'Package Settings'

Notice

If you are developper, please this option true to enable logging in console.

2.1.2

06 Sep 09:46
Compare
Choose a tag to compare

Changes

2.1.1

23 Jul 08:42
Compare
Choose a tag to compare

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

17 Jul 06:31
Compare
Choose a tag to compare

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

This feature proposed by @lahmatiy on issue #72

2.0.0

02 Jun 01:43
Compare
Choose a tag to compare

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

01 Jun 04:58
Compare
Choose a tag to compare

This is the last ST2 compatible version.

Changes

  • Fix list format algorithm