Main Heading (H1)
This is a paragraph with bold text and italic text. You can also use inline code to highlight technical terms or commands.
Secondary Heading (H2)
Here’s a link to our homepage and an external link that opens in a new tab.
Tertiary Heading (H3)
You can combine bold and italic text for extra emphasis.
Fourth Level Heading (H4)
Here’s how to use different markdown features effectively.
Fifth Level Heading (H5)
Even smaller headings are styled consistently.
Sixth Level Heading (H6)
The smallest heading level.
Lists
Unordered List
- First item with important information
- Second item with more details
- Third item with additional context
- Nested item one
- Nested item two
- Fourth item back at the top level
Ordered List
- First step in the process
- Second step to follow
- Third step with details
- Nested step 3.1
- Nested step 3.2
- Final step to complete
Code Examples
Inline Code
Use npm install to install dependencies. Press Cmd+S to save.
Code Blocks
// JavaScript example
const greeting = "Hello, G:URL*s!";
function welcomeUser(name) {
console.log(`${greeting} Welcome, ${name}!`);
return true;
}
welcomeUser("Developer");
# Python example
def calculate_sum(a, b):
"""Calculate the sum of two numbers"""
return a + b
result = calculate_sum(5, 3)
print(f"The result is: {result}")
<!-- HTML example -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>G:URL*s</title>
</head>
<body>
<h1>Welcome!</h1>
</body>
</html>
Blockquotes
This is a blockquote with important information. It can span multiple lines and will be styled beautifully.
You can even have multiple paragraphs in a blockquote.
“The best way to predict the future is to invent it.”
— Alan Kay
Tables
| Feature | Description | Status |
|---|---|---|
| Markdown Support | Full markdown rendering | ✅ Active |
| Code Highlighting | Syntax highlighting for code | ✅ Active |
| Responsive Design | Mobile-friendly layout | ✅ Active |
| Accessibility | WCAG AA compliant | ✅ Active |
Images

Text Formatting
You can use ==highlighted text== to draw attention (if your markdown processor supports it).
You can also use strikethrough for deleted content.
Abbreviations like HTML can have tooltips.
Horizontal Rule
The following is a horizontal rule:
And we continue after the divider.
Mixed Content Example
Here’s a realistic blog section combining multiple elements:
Getting Started with JavaScript
JavaScript is the programming language of the web. Here’s what you need to know:
Key Concepts:
- Variables - Store data using
let,const, orvar - Functions - Reusable blocks of code
- Objects - Collections of key-value pairs
Pro Tip: Always use
constby default, and only useletwhen you need to reassign a variable.
Try this simple example:
const message = "Hello, World!";
console.log(message);
For more information, check out MDN Web Docs.
Remember: Practice makes perfect! Join our upcoming workshops to learn more.
Accessibility Features
All styling includes:
- Proper heading hierarchy
- Sufficient color contrast (WCAG AA)
- Focus states for keyboard navigation
- Semantic HTML elements
- Screen reader friendly markup
Conclusion
This guide demonstrates all the markdown elements styled with the G:URL*s brand design. Write your blog posts using standard markdown syntax and they’ll automatically look great!