From 57204fedbd9567c9aa21b6f9b470de05f4837d91 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Wed, 7 Sep 2022 13:35:07 +0200 Subject: [PATCH] Added markdown notes to the KB --- knowledge base/markdown.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 knowledge base/markdown.md diff --git a/knowledge base/markdown.md b/knowledge base/markdown.md new file mode 100644 index 0000000..c7bfa99 --- /dev/null +++ b/knowledge base/markdown.md @@ -0,0 +1,18 @@ +# Markdown + +## Troubleshooting + +### Escape the backtick character + +Include a non-code formatted backtick by escaping it normally (with a `\`). + +Render it in an inline code block using double backticks instead of single backticks. + +Alternatively, use a code block. This will wrap everything in a `
` HTML tag.  
+To do this, either indent 4 spaces to start a code block, or use fenced code blocks if supported.
+
+## Sources
+
+- [Escaping backtick in Markdown]
+
+[escaping backtick in markdown]: https://www.growingwiththeweb.com/2015/06/escaping-backtick-in-markdown.html