Skip to content

Latest commit

 

History

History
73 lines (47 loc) · 1.26 KB

markdown-additional.md

File metadata and controls

73 lines (47 loc) · 1.26 KB
front-matter
This should not be shown in the renderer

Additional Markdown test file

Test various other Markdown syntax here, starting with the table of contents

[[toc]]

Relative file link

See basic syntax here, and extended syntax here!

Math

Let's define the Normal distribution $N(x; \mu, \sigma^2)$ as follows.

$$ N(x; \mu, \sigma^2) = \frac{1}{\sqrt{2 \pi \sigma^2}} \cdot \exp\left(-\frac{\left(x - \mu\right)^2}{\sigma^2}\right) $$

Graphviz/Dot

digraph {
  rankdir = LR
  A -> B
}

Mermaid

flowchart LR

A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
Loading

kbd tag

While not a markdown syntax, this has a default style:

Press Ctrl + C to copy, and Ctrl + V to paste!

Custom attributes

This paragraph has a red background color.{style=background-color:red}

Github alert blockquote

Note

Something to take into account

Tip

Did you know you can do this and that

Important

Crucial information here

Warning

Critical content demanding immediate attention

Caution

Do not do this and that!

With a custom title:

[!NOTE] Foo bar Hello