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
- Item 1
- Item 2
- Nested item
- Another nested
- Item 3
Ordered List
- First item
- Second item
- Third item
Blockquotes
This is a blockquote
It can span multiple lines
And contain formatting
Links and Images

Emphasis
Bold text and italic text and strikethrough
Horizontal Rules
That's all for now!
# T e s t C h a n g e