MARKTerm

Markterm is a library and program to render Markdown to a terminal. It's inspired by Glow and implemented using Markd

Features

markterm on a light terminal markterm on a dark terminal

TODO

Usage as a program

Either get a static binary from the releases page or build from source:

This is the help:

Markterm - A tool to render markdown to the terminal

Usage:
  markterm <file>
  markterm -h | --help
  markterm --version

Options:
  -h --help     Show this screen.
  --version     Show version.

Usage as a library

  1. Add the dependency to your shard.yml:

    dependencies:
      markterm:
        github: ralsina/markterm

In your code, use it like this:

  puts Markd.to_term(source)

Contributing

  1. Fork it (https://github.com/ralsina/markterm/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors