Punctuation turned into - and duplicates removed

This commit is contained in:
Rodolphe Houdas 2020-07-25 15:11:41 +02:00
parent 5fa7410eb9
commit b9e66df571

View file

@ -2,16 +2,17 @@
Tests the rendering of TOC from Markdown All in One in gitea
- [foor _italic_ bar](#foor-italic-bar)
- [foo _italic_ bar](#foo-italic-bar)
- [foo_foo_bar](#foo-foo-bar)
- [`a.b` c](#ab-c)
- [`a.b` c](#a-b-c)
- [Via remark-cli](#via-remark-cli)
- [1. not a list](#1-not-a-list)
- [2) not a list](#2-not-a-list)
- [foo & < >\"foo\"](#foo---foo)
- [foo & < >\"foo\"](#foo-foo)
- [$\\LaTeX equations$](#latex-equations)
- [:checkered_flag: with emoji shortname](#checkered-flag-with-emoji-shortname)
## foor _italic_ bar
## foo _italic_ bar
## foo_foo_bar
@ -27,13 +28,15 @@ Tests the rendering of TOC from Markdown All in One in gitea
## $\\LaTeX equations$
## :checkered_flag: with emoji shortname
```
"foo _italic_ bar": "foo-italic-bar",
"foo_foo_bar": "foo-foo-bar",
"`a.b` c": "ab-c",
"`a.b` c": "a-b-c",
"Via [remark-cli][]": "via-remark-cli",
"1. not a list": "1-not-a-list",
"1) not a list": "1-not-a-list",
"foo & < >\"foo\"": "foo---foo",
"foo & < >\"foo\"": "foo-foo",
"$\\LaTeX equations$": "latex-equations"
```