Files
markdownblog/posts/mdtest.md
2025-06-19 13:40:31 +02:00

2.0 KiB

title, date, tags, summary
title date tags summary
Markdown Testing 2025-06-17
testing
Testing Markdown Features

Markdown Feature Test

Table of Contents


Headings

H1

H2

H3

H4

H5
H6

Text Formatting

  • Bold
  • Italic
  • Bold and Italic
  • Strikethrough
  • Underline (HTML)
  • ==Highlight (non-standard)==

Lists

Unordered

  • Item 1
    • Subitem 1.1
      • Subitem 1.1.1
  • Item 2

Ordered

  1. First item
  2. Second item
    1. Subitem
    2. Subitem
  3. Third item


Images

Alt text

GIF (Image works too): Image


Code

Inline Code

Here is inline code.

Code Block (fenced)


def hello\_world():
print("Hello, world!")

Code Blog (test)

def hello():
  return true;

Code Block (indented)

    def indented_example():
        return True

Blockquotes

This is a blockquote.

Nested blockquote.


Horizontal Rule





Tables

Syntax Description
Header Title
Cell Content

Task Lists

  • Task 1
  • Task 2
    • Subtask
    • Subtask

HTML in Markdown

This is raw HTML in Markdown.

End of Markdown Feature Test