Markdown Features Guide

SSG Portfolio supports all standard markdown features. Here's a reference guide.

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5

Text Formatting

This is bold text and this is italic text.

You can also use bold and italic together.

This text is struck through

Lists

Unordered List

  • Item 1
  • Item 2
    • Nested item 2.1
    • Nested item 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Nested item 2.1
    2. Nested item 2.2
  3. Third item

Code

Inline code looks like const x = 5;

Code blocks with syntax highlighting:

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('World'));

Blockquotes

This is a blockquote. You can use it for emphasis or to highlight important information.

  • Blockquotes can span multiple lines
  • They can contain multiple paragraphs

Links and Images

Visit the SSG Portfolio GitHub

Alt text for image

Tables

Feature Supported
Markdown Yes
Frontmatter Yes
Images Yes
Code highlighting Yes

Horizontal Rule


That's the end of this guide!