Markdown Features Demo
Welcome to a demo page showing off various Markdown features in a Jekyll site.
π Text Formatting
- Bold
- Italic
StrikethroughInline code
Blockquote: βThe only way to do great work is to love what you do.β β Steve Jobs
π’ Lists
Unordered List
- Apples
- Oranges
- Blood Orange
- Navel Orange
- Bananas
Ordered List
- First item
- Second item
- Subitem
- Subitem
- Third item
π» Code Blocks
Inline
Use the printf()
function to print output.
Block (fenced)
// GameMaker example
if (keyboard_check(vk_space)) {
y -= 10;
}
// JavaScript example
function greet(name) {
return `Hello, ${name}!`;
}
π· Images
π Links
π Tables
Feature | Supported | Example |
---|---|---|
Bold | β | **bold** |
Lists | β | - item |
Code Blocks | β | ` code ` |
Tables | β | this one |
Emojis | β | π β¨ π₯ |
π§© Details and Summary
Click to expand!
This is hidden by default but visible when expanded. ```python def hello(): print("Hello, world!") ```π Heading Depth Test
H2 Heading
H3 Heading
H4 Heading
H5 Heading
π§ͺ HTML Inside Markdown
This is HTML inside a markdown file.
Custom styled HTML block
β Done!
Thatβs the end of the demo. Check how this renders in your theme and if all TOC links work properly.