alanwalk / markdown-toc

MarkdownTOC(Table Of Contents) Plugin for Visual Studio Code.
MIT License
141 stars 111 forks source link

can i autogen the list from ## begin? #85

Open gordongxm opened 4 years ago

gordongxm commented 4 years ago

can i autogen the list from ## begin?

follow is what i want:

title

- [1. aaa](#1-aaa)
- [2. bbb](#2-bbb)
- [3. ccc](#3-ccc)

aaa

bbb

ccc

but now i got:

1. title

1.1. aaa

1.2. bbb

1.3. ccc

follow is mine setting: "markdown-toc.depthFrom": 2,

have someone can help me?

thanks.

efie45 commented 4 years ago

I was just looking for this functionality as well and it looks like the "markdown-toc.depthFrom" VSCode parameter does not appear to actually do anything. Using latest version of VSCode on Mac. Would also love if this could be fixed - I've been using the extension quite a bit lately and it's great!