Jul 25, 2025

testing

Welcome to Blogster ✨

The beautiful markdown editor for modern writers

Start crafting your next blog post, article, or documentation with Blogster's clean and distraction-free interface.

Features

  • Live Preview: Switch between edit, preview, and split modes
  • Dark Mode: Easy on the eyes for long writing sessions
  • Nostr Publishing: Share your content on the decentralized web
  • Cross-Platform: Works seamlessly on Linux, Android, and Windows
  • Syntax Highlighting: Beautiful code blocks with language support

Getting Started

  1. Start typing in Edit mode
  2. Switch to Preview to see your formatted content
  3. Use Split mode for side-by-side editing
  4. Click the share button to publish to Nostr

Code Example

Here's a sample Flutter widget with syntax highlighting:

class MyWidget extends StatelessWidget {
  const MyWidget({super.key});

  @override
  Widget build(BuildContext context) {
    return Container(
      padding: const EdgeInsets.all(16),
      child: const Text(
        'Hello, Blogster!',
        style: TextStyle(
          fontSize: 24,
          fontWeight: FontWeight.bold,
        ),
      ),
    );
  }
}

And here's some JavaScript:

function greetUser(name) {
  const message = `Hello, ${name}! Welcome to Blogster.`;
  console.log(message);
  return message;
}

greetUser('Developer');

Happy writing! πŸš€

This cheese is good.