0.3.0-test

# Getting Started

# Installation

bun add synz-docs

# Basic Usage

import { Hono } from 'hono'
import { docs } from 'synz-docs'

const app = new Hono()

app.route('/docs', docs({
    dir: './docs',
    title: 'Example Docs'
}))

# Folder Structure

docs/
├── index.md
├── guides/
└── api/
Routes are automatically generated from your folder structure.