diff --git a/content/markdown/introduction-to-markdown.md b/content/markdown/introduction-to-markdown.md index 2c508ed..55aa03c 100644 --- a/content/markdown/introduction-to-markdown.md +++ b/content/markdown/introduction-to-markdown.md @@ -6,6 +6,8 @@ eleventyNavigation: order: 20 --- + + Markdown files are basically normal text files. The file extension `.md` specifies that a file can be rendered as Markdown. You can also use Markdown in many parts of Codeberg (Issues, Pull Requests, etc.). @@ -44,13 +46,15 @@ This gets rendered as This is **bold text**. + ```markdown -This is also **bold text**. +This is also __bold text__. ``` This gets rendered as -This is also **bold text**. +This is also __bold text__. + ### Italics @@ -61,13 +65,15 @@ to get the same effect. Here are a few examples. + ```markdown -This is _italic text_. +This is *italic text*. ``` This gets rendered as -This is _italic text_. +This is *italic text*. + ```markdown This is also _italic text_.