From 5fa7410eb91d8f504970a0d0ae41bf31d336ff88 Mon Sep 17 00:00:00 2001 From: Rodolphe Houdas Date: Sat, 25 Jul 2020 14:53:58 +0200 Subject: [PATCH] :tada: First commit --- .vscode/settings.json | 3 +++ README.md | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 README.md diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..0025ca4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "markdown.extension.toc.slugifyMode": "gitea" +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..05213f6 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +# Headers TOC tests + +Tests the rendering of TOC from Markdown All in One in gitea + +- [foor _italic_ bar](#foor-italic-bar) +- [foo_foo_bar](#foo-foo-bar) +- [`a.b` c](#ab-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) +- [$\\LaTeX equations$](#latex-equations) + +## foor _italic_ bar + +## foo_foo_bar + +## `a.b` c + +## Via [remark-cli][] + +## 1. not a list + +## 2) not a list + +## foo & < >  \"foo\" + +## $\\LaTeX equations$ + +``` +"foo _italic_ bar": "foo-italic-bar", +"foo_foo_bar": "foo-foo-bar", +"`a.b` c": "ab-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", +"$\\LaTeX equations$": "latex-equations" +``` \ No newline at end of file