Home

Markdown Features Demo

Welcome to a demo page showing off various Markdown features in a Jekyll site.


πŸ“ Text Formatting

Blockquote: β€œThe only way to do great work is to love what you do.” – Steve Jobs


πŸ”’ Lists

Unordered List

Ordered List

  1. First item
  2. Second item
    1. Subitem
    2. Subitem
  3. 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

Placeholder Image



πŸ“Š 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.