From 32d39a31c779bdced0941f21b3faf13ea13be5c5 Mon Sep 17 00:00:00 2001 From: Alexandre Vicenzi Date: Wed, 30 Jun 2021 01:22:12 +0200 Subject: Update exampleSite --- exampleSite/content/post/markdown-syntax.md | 37 +++++++++++++++-------------- 1 file changed, 19 insertions(+), 18 deletions(-) (limited to 'exampleSite/content/post/markdown-syntax.md') diff --git a/exampleSite/content/post/markdown-syntax.md b/exampleSite/content/post/markdown-syntax.md index d60c404..06990d7 100644 --- a/exampleSite/content/post/markdown-syntax.md +++ b/exampleSite/content/post/markdown-syntax.md @@ -7,7 +7,6 @@ tags = [ "markdown", "css", "html", - "themes", ] categories = [ "themes", @@ -48,10 +47,9 @@ 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. ## Tables @@ -65,20 +63,19 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou #### Inline Markdown within tables -| Inline    | Markdown    | In    | Table | -| ---------- | --------- | ----------------- | ---------- | -| *italics* | **bold** | ~~strikethrough~~    | `code` | +| Italics | Bold | Code | +| -------- | -------- | ------ | +| *italics* | **bold** | `code` | ## Code Blocks #### Code block with backticks -``` -html - +```html + - + Example HTML5 Document @@ -86,12 +83,13 @@ html ``` + #### Code block indented with four spaces - + - + Example HTML5 Document @@ -101,10 +99,10 @@ html #### Code block with Hugo's internal highlight shortcode {{< highlight html >}} - + - + Example HTML5 Document @@ -129,9 +127,13 @@ html #### Nested list -* Item -1. First Sub-item -2. Second Sub-item +* Fruit + * Apple + * Orange + * Banana +* Dairy + * Milk + * Cheese ## Other Elements — abbr, sub, sup, kbd, mark @@ -144,4 +146,3 @@ Xn + Yn = Zn Press CTRL+ALT+Delete to end the session. Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. - -- cgit v1.2.1