
Testing All The Features
By Your Name•July 7, 2025•... views
Welcome to the Feature Test
This post is designed to make sure everything on the blog is working as expected.
Markdown Basics
First, let's test basic markdown styling. You should see bold text, italic text, and a code snippet in a line.
Here is a list of items:
- Item one
- Item two
- Item three
This is a blockquote. It should be styled differently from regular paragraph text, making it stand out.
Code Highlighting
Now for the main event: code highlighting. The block below is JavaScript. It should have full syntax highlighting based on the 'one-dark-pro' theme we selected.
// This is a javascript code block
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet("World");Here are some common commands for a Next.js project.
# Install project dependencies
npm install
# Run the local development server
npm run dev
# Create a production build
npm run build