Skip to main content

Test Post - Theme Functionality Check

By amirdaraee
Featured image for Test Post - Theme Functionality Check

Test Post for Pulsar Theme

This is a test post created to verify the blog theme functionality. Let’s test various markdown features.

Text Formatting

This paragraph contains bold text, italic text, and bold italic text. We can also use strikethrough text.

Lists

Unordered List

  • First item
  • Second item
    • Nested item 1
    • Nested item 2
  • Third item

Ordered List

  1. First step
  2. Second step
  3. Third step

Code Blocks

JavaScript

function testFunction() {
  const message = "Hello from Pulsar theme!";
  console.log(message);
  return message;
}

testFunction();

TypeScript

interface BlogPost {
  title: string;
  description: string;
  date: Date;
  published: boolean;
}

const post: BlogPost = {
  title: "Test Post",
  description: "Testing the theme",
  date: new Date(),
  published: true
};

Python

def greet(name):
    return f"Hello, {name}!"

print(greet("World"))

Blockquotes

This is a blockquote. It should be styled differently from regular text. It can span multiple lines.

Here’s a link to Astro documentation.

Inline Code

You can use inline code like this: const x = 10;

Horizontal Rule


Conclusion

This test post verifies that:

  • Markdown rendering works correctly
  • Syntax highlighting is functional
  • Text formatting is applied properly
  • The blog post template displays content correctly

If you can see this post rendered properly, the theme is working! 🎉