From 2b3a9bc8739fc30549d3c57c379f66996cf16428 Mon Sep 17 00:00:00 2001 From: scbj Date: Thu, 31 Oct 2024 14:04:05 +0100 Subject: [PATCH] added doc/markdown.md to start my own markdown cheat sheet --- docs/markdown.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/markdown.md diff --git a/docs/markdown.md b/docs/markdown.md new file mode 100644 index 0000000..bd153c6 --- /dev/null +++ b/docs/markdown.md @@ -0,0 +1,15 @@ +# markdown + +## links + +To insert links directly in the text use: +```markdown +[display name](url-or-link-to-markdown-anker) +``` +Links can be defined in a separate (not rendered) section as follows: +```markdown +[display name]: url-or-link-to-markdown-anker + +Reference the Link in text with [display name]. +``` +In the last example the Link can be defined after the usage.