Markdown features 01.03.2021 @ DDV Blog Theme

This is post about markdown features.

Lists

or

  1. Ordered list
    1. One
    2. Two
  2. Come back to first level.

Headers (H1)

H2

H3

H4

H5
H6

You can make text italic or bold.

Code

Example of Rust code:


// `vst` uses macros, so we'll need to specify that we're using them!
#[macro_use]
extern crate vst;

// We're implementing a trait `Plugin` that does all the VST-y stuff for us.
impl Plugin for Whisper {
    fn get_info(&self) -> Info {
        Info {
            name: "Whisper".to_string()
        }
    }
}

You can also specify file name that convenient for tutorials:

www/index.html
<div class='filename'>
  <div>src/lib.rs</div>
</div>

Page separator

How it looks:


Syntax:

---

Quotes

The first principle is that you must not fool yourself and you are the easiest person to fool.
-- Richard Feynman

Youtube

С вставкой yt(id="the_id_here")

Vimeo

vm(id="id_here")

Urls

Example

Tables

Example:

Header 1Header 2
ContentContent
ContentContent

Folding content

Title 1

Content

Title 2

Content

Syntax:

<details>
    <summary>Title 1</summary>
    <p>Content 1 Content 1 Content 1 Content 1 Content 1</p>
</details>