0.4.2 • Published 24 days ago

marktiddly v0.4.2

Weekly downloads
-
License
MIT
Repository
github
Last release
24 days ago

MarkTiddly

Render Markdown files as a single static page.

You can take notes in Markdown files and publish them as a single HTML file so you can access them from anywhere.

Features

  • Single HTML page
    • Easy to deploy
    • Portable
  • Password protection (OpenPGP)
  • Data compression (Pako)

Demos

Usage

Basic usage:

$ npx marktiddly generate --cwd my-docs -o output.html
$ open output.html

Protect data with a password:

$ npx marktiddly generate \
  --cwd my-docs \
  -o output.html \
  --pgp 'My Password' \
  --pgp-hint 'Ask Mom for the password' \
  --glob 'public/*.md'
$ open output.html

You can also try the demo in this repository with the command below:

$ npx marktiddly serve --cwd demo --default-open marktiddly
# Then visit http://localhost:4000