deface

Crates.iodeface
lib.rsdeface
version0.1.2
sourcesrc
created_at2018-02-04 02:18:08.674618
updated_at2018-09-13 19:08:25.336138
descriptionLightweight markup to HTML converter
homepagehttps://github.com/lazear/deface
repositoryhttps://github.com/lazear/deface.git
max_upload_size
id49530
size21,783
Michael Lazear (lazear)

documentation

README

deface

Crates.io

Deface is a lightweight and fast markup language similar to markdown. It shares most of the same syntax, but it plays fast and loose with some of the rules

Syntax

Run deface example.md to see this first hand

![img alt text](./image_location.png)

{anchor-points} can be created and [linked to](#anchor-points)

# Headers are the same as markdown

> Lines starting with `>` 
> are blockquotes

- Unordered
- Lists
- Use Dashes

1. And ordered
23. lists use numbers
1234. (any numbers!)

<html> can be directly embedded. Any line starting with `<` is skipped by the parser </html>
~italic!~
*bold*
_underline_
=== horizontal rule

Usage:

Download and install the Rust toolchain

Install from crates.io

cargo install deface

Command line arguments:

deface <input file> ...

Input files are markup files (default extension ".md"), and will be translated into an HTML file. Multiple input files can be provided, like so

deface README.md index.md resume.md about.md
Commit count: 14

cargo fmt