The following markdown file showcases all the features one can achieve within markdown and with Hugo shortcodes.

MARKDOWN FORMAT Link to heading

Headings Link to heading

The following HTML <h1><h6> elements represent six levels of section headings. <h1> is the highest section level while <h6> is the lowest.

H1 Link to heading

H2 Link to heading

H3 Link to heading

H4 Link to heading

H5 Link to heading
H6 Link to heading

Paragraphs are separated by enters.

Emphasis Link to heading

Italics with underscores.

Bold with asterisks.

Combined emphasis with asterisks and underscores.

Strikethrough with two tildes.

Blockquotes: The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a footer or cite element, and optionally with in-line changes such as annotations and abbreviations.

This is a blockquote with a >.

This is a blockquote with a tab.

Blockquote without attribution Link to heading

Tiam, ad mint andaepu dandae nostion secatur sequo quae. Note that you can use Markdown syntax within a blockquote.

Blockquote with attribution Link to heading

Don’t communicate by sharing memory, share memory by communicating.
Rob Pike1

Horizontal line using ***


Footnote Link to heading

I have more 2 to say.

Lists Link to heading

Ordered List Link to heading

  1. First item
  2. Second item
  3. Third item

Unordered List Link to heading

  • List item
  • Another item
  • And another item

Nested list Link to heading

  • Fruit
    • Apple
    • Orange
    • Banana
  • Dairy
    • Milk
    • Cheese

Todo Link to heading

Todo lists can be written by using the standard Markdown syntax:

  • Write math example
    • Write diagram example
  • Do something else

An external link

A relative link from one post to another post

A link to a file

A link to heading on this page

Figures Link to heading

The only correct way to insert images from static/images:

![1](/images/hariri.jpg)

Image

Tables Link to heading

Tables aren’t part of the core Markdown spec, but Hugo supports them out-of-the-box.

NameAge
Bob27
Alice23

Inline Markdown within tables Link to heading

ItalicsBoldCode3
italicsboldcode
huhanalyzabilityEnglishArabicChinese
0analyzable1115099
1unanalyzable393220
2semi-analyzable341

Code Blocks Link to heading

Code block with backticks Link to heading

#Roman numerals
def roman(num: int) -> str:

    chlist = "VXLCDM"
    rev = [int(ch) for ch in reversed(str(num))]
    chlist = ["I"] + [chlist[i % len(chlist)] + "\u0304" * (i // len(chlist))
                    for i in range(0, len(rev) * 2)]

Code block indented with four spaces Link to heading

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

Code block with Hugo’s internal highlight shortcode Link to heading

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

Other Elements Link to heading

— abbr, sub, sup, kbd, mark Link to heading

GIF is a bitmap image format.

H2O

Xn + Yn = Zn

Press CTRL+ALT+Delete to end the session.

Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.

Emoji: ❤️

https://www.webfx.com/tools/emoji-cheat-sheet/


SHORTCODES Link to heading

Details Link to heading

Details shortcode is a helper for details html5 element. It is going to replace expand shortcode.

Example Link to heading

{{< details "Detail example" [open] >}}
## Markdown content
Lorem markdownum insigne...
{{< /details >}}
{{< details title="Detail example" open=true >}}
## Markdown content
Lorem markdownum insigne...
{{< /details >}}
Detail example

Markdown content Link to heading

Lorem markdownum insigne…

Mermaid Chart Link to heading

MermaidJS is library for generating svg charts and diagrams from text.

Override Mermaid Initialization Config

To override the initialization config for Mermaid, create a mermaid.json file in your assets folder!

Example Link to heading

{{< mermaid [class="text-center"]>}}
stateDiagram-v2
    State1: The state with a note
    note right of State1
        Important information! You can write
        notes.
    end note
    State1 --> State2
    note left of State2 : This is the note to the left.
{{< /mermaid >}}

stateDiagram-v2 State1: The state with a note note right of State1 Important information! You can write notes. end note State1 --> State2 note left of State2 : This is the note to the left.

Icons Link to heading

Fork-Awesome Icons, use them with html inputs like this, direcly in a md file:

<i class="fa fa-1x fa-rebel"></i>

https://forkaweso.me/Fork-Awesome/icons/

Centering Link to heading

Centered text

Youtube embedding Link to heading

{{< youtube 16_NYHUZ1kM >}}

https://www.innoq.com/en/blog/markdown-with-zotero-workflow/

Cite Link to heading

Use CNTRL + ALT + Z to cite from Zotero

or4

Typography Link to heading

Raleway.

Plotly Link to heading

1


“What I like to drink most is wine that belongs to others.”
— Diogenes, 4th century BC


  1. The above quote is excerpted from Rob Pike’s talk during Gopherfest, November 18, 2015. ↩︎

  2. Footnote example. ↩︎

  3. The above quote ↩︎

  4. Dalby, A. (2000). Dangerous Tastes: The Story of Spices. University of California Press. https://www.worldhistory.org/books/0520236742/ ↩︎