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

Generate and update magically a table of contents based on the headlines of a parsed markdown file.

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

[Enter steps to reproduce below:] 1. simply happens every time i try Packages->markdown-toc->Toggle **Atom Version**: 1.9.8 **System**: Microsoft Windows 10 Pro **Thrown From**: [markdown-toc](https://github.com/nok/markdown-toc) package, v0.4.1 ### Stack Trace Failed...

You can test with this file if you wish: https://github.com/ahuffman/ansible-sudoers/blob/2.0.0/README.md I find if I have headings with underscores or dashes the links in the toc does not get generated properly....

Right now, the plugin misunderstands comment lines inside code blocks for markdown headings. For instance, when writing `````` ```python # this is a comment ``` `````` the `this is a...

Markdown linters don't like hard tabs by default. Could the code be changed to use spaces instead (converted to 4 spaces according to [github flavour markdown spec](https://github.github.com/gfm/#tabs))

**Behavior** My headline "Preußen" results in the link `[Preußen](#preuen)`. **Background information** The letter "ß" is used [very often](https://de.wiktionary.org/wiki/Verzeichnis:Deutsch/W%C3%B6rter_mit_%C3%9F) in German. **Solution** Change `hash = hash.replace /[^a-z0-9\u4e00-\u9fa5äüö\-]/g, ""` to `hash =...

Like below, it is not intend to be section, only the code within MD grammar: ```python #!/usr/bin/env python3 print('hello, world')

If a TOC is added to a markdown file that is missing at least one first-level heading, the indentation of the list means it is interpreted as a code block...

You can test with this markdown file if you wish. I had to turn off auto-updates on save and manually fix up some of the toc: https://github.com/ahuffman/ansible-sudoers/blob/2.0.0/README.md Basically the config...

If open multiple markdown files, just one md file can use this plugin, the other will not be able to.

Hi, I have a document, and one general title at top of document. Then, I have a sections: ``` # TITLE DOC # Index (the index generated using “Insert or...