SSG Portfolio

Welcome to SSG Portfolio

Advanced Markdown Features

Code Syntax Highlighting

Here's some JavaScript code with syntax highlighting:

function greet(name) {
  console.log(`Hello, ${name}!`);
  return true;
}

greet('World');

And here's some Python:

def fibonacci(n):
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)

print(fibonacci(10))

Tables

Feature Status Notes
Markdown Full support
Frontmatter YAML parsing
Syntax highlighting highlight.js
Tables GitHub flavored

Lists

Unordered List

Ordered List

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

Blockquotes

This is a blockquote

It can span multiple lines

And contain formatting

Links and Images

Visit GitHub

Sample Image

Emphasis

Bold text and italic text and strikethrough

Horizontal Rules


That's all for now!

# Test Change