markdown-toc icon indicating copy to clipboard operation
markdown-toc copied to clipboard

MarkdownTOC(Table Of Contents) Plugin for Visual Studio Code.

Results 56 markdown-toc issues
Sort by recently updated
recently updated
newest added

As title, the character ` should be removed from TOC

When attempting to set the Table of Contents to use an ordered list, it updates, but then reverts on save. This behavior is also noticed if you set the value...

I have written the settings for the markdown file that the table of content code is the following. ``` - [LeetCode](#leetcode) - [Problems](#problems) - [Algorithms](#algorithms) - [License](#license) ``` However, the...

A heading like ``` # [Heading](mydoc.md) ``` Leads to a TOC entry ``` [[Heading](mydoc.md)](#headingmydocmd) ``` The code should correctly detect that a heading has a link and discard that when...

Bug--如果标题含有%符号 则无法插入或者更新序号 如: ``` # 监控指标告警 ## k8s相关指标告警 ### 节点内存 > 85% ### 节点CPU > 85% ### 节点硬盘 > 80% ``` 删除 % 号即可更新序号

* macOS 10.12 * VS Code 1.14.2 * Markdown TOC 1.5.6 (2017-07-25) Test case: ```md * [🚲 Hello 🚲](#🚲-hello-🚲) # 🚲 Hello 🚲 ... ``` The generated anchor links to...

The generator should exclude code blocks from lines it considers when searching for headings for the TOC. The following will reproduce: --- # Section 1 ```sh # Look for processes...

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...

# Issue: Headers with links are not handled. # Example: # [Example](http://example.com) # Output: - [[Example](http://example.com)](#examplehttpexamplecom) # [Example](http://example.com) # Expected: - [Example](#example) # [Example](http://example.com)

bug

In the VSCode config the value for the 'eol' setting can be 'auto' - I was seeing the text 'auto' displayed where there should have been new lines. Cheers for...