--- title: "Markdown Testing" date: "2025-06-17" tags: ["testing"] summary: "Testing Markdown Features" --- # Markdown Feature Test ## Table of Contents - [Headings](#headings) - [Text Formatting](#text-formatting) - [Lists](#lists) - [Links](#links) - [Images](#images) - [Code](#code) - [Blockquotes](#blockquotes) - [Horizontal Rule](#horizontal-rule) - [Tables](#tables) - [Task Lists](#task-lists) - [HTML in Markdown](#html-in-markdown) --- ## 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 --- ## Links - [Inline Link](https://www.example.com) - [Reference Link][example] - [example]: https://www.example.com --- ## Images ![Alt text](https://via.placeholder.com/150 "Optional title") --- ## Code ### Inline Code Here is `inline code`. ### Code Block (fenced) ```Python def hello\_world(): print("Hello, world!") ``` ### Code Block (indented) ```Python def indented_example(): return True ``` --- ## Blockquotes > This is a blockquote. > > > Nested blockquote. --- ## Horizontal Rule --- ___ *** --- ## Tables | Syntax | Description | |--------|-------------| | Header | Title | | Cell | Content | --- ## Task Lists - [x] Task 1 - [ ] Task 2 - [x] Subtask - [ ] Subtask --- ## HTML in Markdown
This is raw HTML in Markdown.
--- _End of Markdown Feature Test_