This is a post. The first post. It demonstrates various markdown elements for styling purposes.
Headers and Prose
This is a paragraph of prose. It contains italic text, bold text, and bold italic text. You can also use inline code for technical terms like const or function.
Here’s another paragraph to show spacing. Links look like this and should be styled appropriately.
A Subheading
Subheadings help organize content into logical sections. This section covers lists.
Lists
Here’s an unordered list:
- First item
- Second item with bold
- Third item with
code - Nested items:
- Nested one
- Nested two
And an ordered list:
- Step one
- Step two
- Step three
Code Blocks
Here’s a code block with syntax highlighting:
package main
import "fmt"
func main() {
message := "Hello, World!"
fmt.Println(message)
}
And one in JavaScript:
const greet = (name) => {
console.log(`Hello, ${name}!`);
};
greet("World");
Blockquotes
This is a blockquote. It’s useful for highlighting quotes or important notes.
It can span multiple paragraphs.
Tables
| Language | Year | Typing |
|---|---|---|
| Go | 2009 | Static |
| JavaScript | 1995 | Dynamic |
| Python | 1991 | Dynamic |
| Rust | 2010 | Static |
Horizontal Rule
Here’s a horizontal rule:
And that’s the end of the demo content.