From f332c68a4a9dfb6da89fe79dd53f7ef6b0a9cc66 Mon Sep 17 00:00:00 2001 From: Hasan al Rasyid Date: Mon, 14 Mar 2022 10:49:32 +0900 Subject: [PATCH] auto --- manuscript.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/manuscript.md b/manuscript.md index 14a3b07..b79f579 100644 --- a/manuscript.md +++ b/manuscript.md @@ -85,6 +85,26 @@ More detailed syntax can be accessed in the Markdown cheatsheet. 2. Paragraph: blank line stands as a paragraph separator. No indentation for the first line (it only required in multilined lists to show that the next line is part of the item if it is non-blank and indented). 3. Italic: \verb{*} Ex. \verb{this text is *italic*} : this text is *italic* 4. Bold: \verb{**} Ex. \verb{this text is **bold**} : this text is **bold** +5. Bold and Italic: \verb{***} Ex. \verb{this text is ***bold and italic***} this text is ***bold and italic*** +6. Blockquotes: \verb{> } Ex. + +~~~ +> This is block quoted +> +> after empty line +>> and multiple +> ok +~~~ + +will produce: + + +> This is block quoted +> +> after empty line +>> and multiple +> ok +