Test Post 2
This post serves as a typography test to ensure all markdown features are rendering correctly on your new Next.js website. Below you will find examples of the supported syntax.
Text Formatting
We support bold text for emphasis, italic text for subtlety, and even bold italics if you really need to scream.
You can also use inline code to highlight technical terms.
Lists
Unordered List
Here is a grocery list:
- Apples
- Bananas
- Oranges
- Clementines
- Tangerines
- Pears
Ordered List
And here are the steps to build this blog:
- Install Next.js
- Configure Obsidian
- Write content
- Deploy
Code Blocks
Here is an example of a JavaScript code block with syntax highlighting (if you add a syntax highlighter later, for now it will just be a block):
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet('Obsidian');