From 78df2ff10956020cfa150f6dc9d7ec2f590fbc8a Mon Sep 17 00:00:00 2001 From: Aditya Telange <21258296+adityatelange@users.noreply.github.com> Date: Sat, 12 Mar 2022 20:03:49 +0530 Subject: [PATCH] Update internal code blocks for test --- content/posts/markdown-syntax.fa.md | 34 +++++++++++++++++++++++++++-- content/posts/markdown-syntax.fr.md | 32 ++++++++++++++++++++++++++- content/posts/markdown-syntax.md | 25 +++++++++++++++++++++ 3 files changed, 88 insertions(+), 3 deletions(-) diff --git a/content/posts/markdown-syntax.fa.md b/content/posts/markdown-syntax.fa.md index 7e076c19..d4e15c17 100644 --- a/content/posts/markdown-syntax.fa.md +++ b/content/posts/markdown-syntax.fa.md @@ -49,7 +49,8 @@ The blockquote element represents content that is quoted from another source, op #### Blockquote with attribution -> Don't communicate by sharing memory, share memory by communicating.
+> Don't communicate by sharing memory, share memory by communicating. +> > — Rob Pike[^1] [^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015. @@ -71,8 +72,33 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the- ## Code Blocks +#### Inline Code + +`This is Inline Code` + +#### Only `pre` + +
+This is pre text
+
+ #### Code block with backticks +``` + + + + + Example HTML5 Document + + +

Test

+ + +``` + +#### Code block with backticks and language specified + ```html @@ -115,6 +141,10 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the- {{< /highlight >}} +#### Gist + +{{< gist spf13 7896402 >}} + ## List Types #### Ordered List @@ -145,7 +175,7 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the- H2O -Xn + Yn: Zn +Xn + Yn = Zn Press CTRL+ALT+Delete to end the session. diff --git a/content/posts/markdown-syntax.fr.md b/content/posts/markdown-syntax.fr.md index 047302be..057078df 100644 --- a/content/posts/markdown-syntax.fr.md +++ b/content/posts/markdown-syntax.fr.md @@ -49,7 +49,8 @@ The blockquote element represents content that is quoted from another source, op #### Blockquote with attribution -> Don't communicate by sharing memory, share memory by communicating.
+> Don't communicate by sharing memory, share memory by communicating. +> > — Rob Pike[^1] [^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015. @@ -71,8 +72,33 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the- ## Code Blocks +#### Inline Code + +`This is Inline Code` + +#### Only `pre` + +
+This is pre text
+
+ #### Code block with backticks +``` + + + + + Example HTML5 Document + + +

Test

+ + +``` + +#### Code block with backticks and language specified + ```html @@ -115,6 +141,10 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the- {{< /highlight >}} +#### Gist + +{{< gist spf13 7896402 >}} + ## List Types #### Ordered List diff --git a/content/posts/markdown-syntax.md b/content/posts/markdown-syntax.md index 3cb0f05e..98c016ba 100644 --- a/content/posts/markdown-syntax.md +++ b/content/posts/markdown-syntax.md @@ -71,8 +71,33 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the- ## Code Blocks +#### Inline Code + +`This is Inline Code` + +#### Only `pre` + +
+This is pre text
+
+ #### Code block with backticks +``` + + + + + Example HTML5 Document + + +

Test

+ + +``` + +#### Code block with backticks and language specified + ```html