From 939a578e2d88a157f5ec3411c26fc2f59d5a987b Mon Sep 17 00:00:00 2001 From: Ronald Record Date: Mon, 6 Feb 2023 13:04:22 -0800 Subject: [PATCH 1/2] Improved markdown cheat sheet --- cheatsheets/cheatsheet-markdown.txt | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/cheatsheets/cheatsheet-markdown.txt b/cheatsheets/cheatsheet-markdown.txt index a84a981..4c0f740 100644 --- a/cheatsheets/cheatsheet-markdown.txt +++ b/cheatsheets/cheatsheet-markdown.txt @@ -1,6 +1,14 @@ ## markdown Links | [text in for link](http://example.com) -Images | [alt text](http://example.com/image.png "image title") +Images | ![alt text](http://example.com/image.png "image title") Horizontal rule | --- Line break
| Two spaces at line end -Section link to # My Heading | [text](#my-heading) +Section link to 'My Heading' | [text](#my-heading) +Bold text | **bold text** +Italic text | *italicized text* +Blockquote | > blockquote +Ordered list | 1. First item +Unordered list | - First item +Code | `some code` or some code +Open fenced code block | ```[language] ()e.g. ```shell or ```python) +Close fenced code block | ``` From 33a750462b752af702017dba1489fd0c6d10a9d6 Mon Sep 17 00:00:00 2001 From: Ronald Record Date: Mon, 6 Feb 2023 13:09:10 -0800 Subject: [PATCH 2/2] Improved markdown cheat sheet --- cheatsheets/cheatsheet-markdown.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cheatsheets/cheatsheet-markdown.txt b/cheatsheets/cheatsheet-markdown.txt index 4c0f740..437b763 100644 --- a/cheatsheets/cheatsheet-markdown.txt +++ b/cheatsheets/cheatsheet-markdown.txt @@ -5,10 +5,11 @@ Horizontal rule | --- Line break
| Two spaces at line end Section link to 'My Heading' | [text](#my-heading) Bold text | **bold text** -Italic text | *italicized text* +Italic text | *italic text* Blockquote | > blockquote Ordered list | 1. First item Unordered list | - First item -Code | `some code` or some code -Open fenced code block | ```[language] ()e.g. ```shell or ```python) +Inline code (tick) | `some code` +Inline code (code tag) | some code +Open fenced code block | ```[language] (e.g. ```shell or ```python) Close fenced code block | ```