Skip to main content
Home
Works with
This package works with Deno
This package works with Deno
JSR Score94%
Published2 months ago (0.0.2)

A simple static site generator that converts README.md to HTML

README To Site (r2s)

Test

A simple static site generator that converts README.md to HTML

Installation

Global Install

deno install -A -n r2s jsr:@eastsun5566/r2s

Or run directly

# Serve
deno run -A jsr:@eastsun5566/r2s serve

# Build
deno run -A jsr:@eastsun5566/r2s build

Usage

mkdir my-site
cd my-site

# Create a README.md
echo "# Welcome to My Site" >> README.md

# Serve locally
r2s serve

# Build static site
r2s build

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@eastsun5566/r2s

Import symbol

import * as r_s from "@eastsun5566/r2s";
or

Import directly with a jsr specifier

import * as r_s from "jsr:@eastsun5566/r2s";