← Back to Home

Welcome to HN Static Site Generator

Welcome to HN Static Site Generator! This is a simple, elegant static site generator built with Node.js that transforms your markdown files into a beautiful retro-styled website.

Features

This static site generator comes with many powerful features:

Getting Started

Writing Your First Post

Create a new markdown file in the content/ folder with front-matter:

---
title: My First Post
description: This is my first blog post
date: "2025-01-15"
tags: ["blog", "first-post"]
draft: false
---

Your content goes here...

Available Commands

Configuration

Edit src/config.js to customize your site:

Markdown Features

This generator supports many markdown features:

Code Highlighting

function greet(name) {
  console.log(`Hello, ${name}!`);
}

greet("World");

Tables

Feature Supported
Markdown
Tables
Code
Footnotes

Task Lists

Keyboard Shortcuts

Press Ctrl+S to save or Cmd+Q to quit.

What’s Next?

Start writing your own posts and customize the configuration to make this site your own. Happy blogging!


This post was generated automatically as an example.