Skip to content

Titles

Titles

Big Title

Medium Title

Small Title

Small Sub Title

Very Small Title
Very Small Sub Title

# Big Title
## Medium Title
### Small Title
#### Small Sub Title
##### Very Small Title
###### Very Small Sub Title
<h1>Big Title</h1>
    <h2>Medium Title</h2>
        <h3>Small Title</h3>
            <h4>Small Sub Title</h4>
                <h5>Very Small Title</h3>
                    <h6>Very Small Sub Title</h4>

Text formatting

Text formatting

This is some bold text
This is some italic text
This is some bold italic text
This is some in-line code
This is some underlined text
This is some crossed out text
This is some highlighted text

This is some **bold text**  
This is some *italic text*  
This is some ***bold italic text***  
This is some `inline code`  
This is some ^^underlined text^^  
This is some ~~crossed out text~~  
This is some ==highlighted text==

Horizontal separator

Horizontal separator

Some text


Some text under the separator

***
---
___

Quote blocs

Quote blocs

Never laugh at live dragons. J.R.R. Tolkien

> Never laugh at live dragons. 
> J.R.R. Tolkien 

Definition list

Definition list

Random
  1. Having no specific pattern, purpose, or objective: synonym: chance.
  1. Of or relating to a type of circumstance or event that is described by a probability distribution.
Random
: 1. Having no specific pattern, purpose, or objective: synonym: chance.
: 2. Of or relating to a type of circumstance or event that is described by a probability distribution. 

Code formatting

Inline code

Inline code

This is some inline code

This is some `inline code`  

Code bloc

Code bloc

randomJavaClass.java
public class HelloWorld {
  // This is a comment
  public static void main(String[] arg){
    // This is another one
    System.out.println("Hello world");
  }
} 
```java hl_lines="1-2 5 7" linenums="1" title="randomJavaClass.java"
public class HelloWorld {
  // This is a comment
  public static void main(String[] arg){
    // This is another one
    System.out.println("Hello world");
  }
} 
```

Lists

Ordered list

Ordered list

  1. First
  2. second
  3. Then (numbers don't matter)
  4. Finally, a last one
1. First
2. Second
1. Then (numbers don't matter)
4. Finally, a last one
</a> #Stopping the list
<ol>
  <li>First</li>
  <li>second</li>
  <li>Then (numbers don't matter)</li>
  <li>Finally, a last one</li>
</ol>

Unordered list

Unordered list

  • First
  • Second
    • Third
- First
- Second
    + Third
<ul>
    <li>First</li>
    <li>Second</li>
    <ul>
        <li>Third</li>
    </ul>
</ul>

Tasklist

Tasklist

  • Lorem ipsum dolor sit amet, consectetur adipiscing elit
  • Vestibulum convallis sit amet nisi a tincidunt
    • In hac habitasse platea dictumst
    • In scelerisque nibh non dolor mollis congue sed et metus
    • Praesent sed risus massa
  • Aenean pretium efficitur erat, donec pharetra, ligula non scelerisque
* [x] Lorem ipsum dolor sit amet, consectetur adipiscing elit
* [ ] Vestibulum convallis sit amet nisi a tincidunt
    * [x] In hac habitasse platea dictumst
    * [x] In scelerisque nibh non dolor mollis congue sed et metus
    * [ ] Praesent sed risus massa
* [ ] Aenean pretium efficitur erat, donec pharetra, ligula non scelerisque

Emojis

Extensive emoji list

Emoji Aspect
:alien: 👽
:yum: 😋
:confused: 😕
:smirk: 😏
:kiss: 💋
:frog: 🐸
:fr: 🇫🇷
:gb: 🇬🇧
:tongue: 👅
:computer: 💻

Footnotes

Note

This is the first way1 to define a footnote.
This is some boring text. This is another way2 to define a footnote.
Another boring text

This is the first way[^1] to define a footnote.  
This is some boring text.
This is another way[^t] to define a footnote.  
Another boring text

[^1]: Using numbers
[^t]: It's also possible to use characters

  1. Using numbers 

  2. It's also possible to use characters