Markdown Language Syntax

For full documentation visit mkdocs.org.

Headers


# H1
## H2
### H3
#### H4
##### H5
###### H6

H1 header line

H2

H3

H4

H5
H6

header line with underscore


Headers with underline:

### H3
- - -

### H3
---

Text Decorations


**This is strong text**
*This is emphasize*
_this is italic_
~~This is strike through (Supported by Python exterion: tilde)~~

++This is underline++ (Not supported by all)
==This is highlight== (Supported by Python exterion: mark)

This is strong text

This is emphasize

This is italic

This is strike through

++This is underline++

This is highlight


[This is a link to Google](https://www.google.ca)

This is a link to Google

![Link to JoyHome Logo Image](assets/images/logo.jpg)

JoyHome Logo

Unordered List


  • This is an unordered list

    • Nested ordered list
    • second nested]
  • Second bullet list item

Block Quote


> This is a block of quote

> second sentence

This is a block of quote

second sentence

Table


| column | column |
|--------|--------|
|  First | Second |
column column
First Second

Code and Bullet


  1. This is a bullet.
  2. This is the end of the first bullet list, with a fenced code block following:
Code
More Code
  1. This is the start of a new bullet list. Hey, where is my fenced code?
Code
More Code
  1. Maybe we can do it with indenting? Code More Code
  2. Did that work? No, so we will try with separation:

    Code More Code

  3. Now I will try more indenting, to match the bullet margin, plus 4:

    Code
    More Code
    

    1. Well that was disappointing. How about we indent and use backticks together? Code More Code
    2. No such luck. This time, with separation too:

    Code More Code

  4. Don't tell me that worked?? Does it work with nested bullets?

    1. First nested bullet

      Code More Code

    2. Second nested bullet

Python extensions


Here is the link to Python extension list

Open styled details (extension:details)
Nested details!

And more content again.

Discussion

(extension:admonition) Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa.

Important

Important sentences

using system.io;
using System;
//Supported by extension:codehilite

Sentence Break


  • try markdown within div, supported by extention:extra

Comment is invisible on Page