TRNK

Articles

GitHub Flavored Markdown Sample

This is a sample file to test GitHub Flavored Markdown (GFM). It includes all supported features.


Headers

H1

H2

H3

H4

H5
H6

Emphasis

Italic
Italic
Bold
Bold
Strikethrough


Lists

Unordered

Ordered

  1. First
  2. Second
  3. Third
    1. Nested
    2. Still Nested

Task Lists


GitHub


Images

Octocat


Blockquotes

This is a blockquote.

Nested blockquote.


Code

Inline code: console.log("Hello, world!");

Fenced Code Blocks

Click to expand code
function greet(name) {
  console.log(`Hello, ${name}!`);
}
greet("GitHub");
def greet(name):
    print(f"Hello, {name}!")

Tables

SyntaxDescription
HeaderTitle
ParagraphText

Horizontal Rule


Mentions

@octocat


Emojis

:+1: :smile: :rocket: :tada:


HTML in Markdown

This is raw HTML inside Markdown!


Footnotes

Here is a simple footnote1.


Check this file: main.py or visit https://github.com

Footnotes

  1. This is the footnote.