Markdown Styling Example

2025-02-26

Markdown Styling Guide

This note demonstrates various Markdown styling options and how they appear on the website.

Images with Captions

You can add images with captions using the custom shortcode:

Example image

This is an example image with a caption. The caption can include additional information about the image and will be displayed below it with a subtle styling.

Basic Markdown Elements

Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

Text Formatting

Bold text and italic text are supported.

This is a blockquote that can be used to highlight important information.

Lists

Ordered list:

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

Unordered list:

  • Item one
  • Item two
  • Item three

Code

Inline code is formatted with backticks.

// Code blocks can include syntax highlighting
function greet(name) {
  return `Hello, ${name}!`;
}

Tables

Header 1 Header 2
Cell 1 Cell 2
Cell 3 Cell 4