hash-tag 0.1.2

Markdown to HTML parser.
hash-tag-0.1.2 is not a library.
Visit the last successful build: hash-tag-0.1.16

hash-tag

<#>

Markdown to HTML Parser written in rust.

Features

  • Parses headings, blockquotes, inline code, codeblock, paragraphs, links, bold, italics, unordered lists and ordered list.
  • Has debug mode for showing outputs of markdown parsing.
  • Visualize outputs using frames ui.

Usage

Using cargo

cargo install hash-tag
  • Use run
hash-tag path/to/file.md

Generates a index.html file

  • Specify output file using -o flag
hash-tag path/to/file.md -o path/to/file.html
  • Visualize output file using -v flag
hash-tag path/to/file.md -v path/to/view.html

This uses frames ui.

  • Use debug mode using -d flag
hash-tag path/to/file.md -d

Using source

  • Clone the repository
git clone https://github.com/pr4j3sh/hash-tag.git
cd hash-tag
  • Use run
cargo run path/to/file.md

Generates a index.html file

  • Specify output file using -o flag
cargo run path/to/file.md -o path/to/file.html
  • Visualize output file using -v flag
cargo run path/to/file.md -v path/to/view.html

This uses frames ui.

  • Use debug mode using -d flag
cargo run path/to/file.md -d

References