showdown

command module
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 10, 2023 License: MIT Imports: 4 Imported by: 0

README

Showdown

showdown demo screenshot

Showdown is a live Markdown previewer.

It uses fsnotify to watch a given file for changes, renders the content to HTML using markdown and serves the output on your local machine.

For an update on the latest changes please have a look at the CHANGELOG.

Installation

To install showdown you can download a prebuilt binary that matches your system, e.g.

OS=linux
ARCH=amd64
# Download
RELEASE_TAG=$(curl -sSfL https://api.github.com/repos/cluttrdev/showdown/releases/latest | jq -r '.tag_name')
curl -sSfL https://github.com/cluttrdev/showdown/releases/download/${RELEASE_TAG}/showdown_${RELEASE_TAG}_${OS}_${ARCH}.tar.gz -o /tmp/showdown.tar.gz
# Install
tar -xozf /tmp/showdown.tar.gz showdown
install ./showdown ~/.local/bin/showdown

Alternatively, if you have the Go tools installed on your machine, you can use

go install github.com/cluttrdev/showdown@latest

Usage

To preview a Markdown formatted file, e.g. this project's README.md, simply run

showdown README.md

This will render the file content as HTML, serve it on http://127.0.0.1:1337/ and update the preview on changes.

Run showdown --help for more information.

Styles

When previewing your Markdown files with showdown you can select a style that should be applied to the rendered content via the --style <name>[:<variant>] option.

The following style choices are currently available:

  • plain - i.e. no CSS style is used
  • github - GitHub Markdown style replication, uses light or dark mode depending on your system settings
    • github:light - GitHub style, light-only
    • github:dark - GitHub style, dark-only
Shutdown

There are basically 2 different ways to stop a running showdown application.

The first is to send its process a SIGINT or SIGTERM signal, either by hitting the Ctrl+C key combination (if it's running in the foreground) or by using a command like

kill -s SIGTERM $(pidof showdown)

The second one is to send a http POST request to the application server's /shutdown endpoint, e.g.

curl --request POST http://127.0.0.1:1337/shutdown

(There's also the shutdown stop command that does send this request for you.)

Acknowledgements

This project was inspired by the livedown project of Hrvoje Šimić.

The CSS stylesheets to replicate the GitHub Markdown styles were taken from Sindre Sorhus' github-markdown-css repo.

License

This project is released under the MIT License

Troubleshooting

No live update when editing in (neo)vim

If you're previewing a file while editing it using (neo)vim it might not get updated on writes. This is probably due to how backups are configured in your setup (see :help backup).

If you write to an existing file (but do not append) while the 'backup', 'writebackup' or 'patchmode' option is on, a backup of the original file is made. The file is either copied or renamed (see 'backupcopy').

If backupcopy is set to "no" (or "auto") the original file is renamed and a new one is written to. Thus, the backup file is checked for changes instead of the newly created file.

To fix this, consider setting the backupcopy option to "yes". This will make a copy of the file and overwrite the original one.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
internal
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL