3个版本
使用旧的Rust 2015
0.1.2 | 2018年9月13日 |
---|---|
0.1.1 | 2018年8月21日 |
0.1.0 | 2018年2月4日 |
#1814 in 文本处理
20KB
422 行
deface
Deface是一种轻量级且快速的标记语言,类似于Markdown。它与Markdown具有大多数相同的语法,但在一些规则上较为宽松
语法
运行deface example.md
来亲身体验
![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
使用方法
下载并安装Rust工具链
从crates.io安装
cargo install deface
命令行参数
deface <input file> ...
输入文件是标记文件(默认扩展名“.md”),将被转换为HTML文件。可以提供多个输入文件,如下所示
deface README.md index.md resume.md about.md
依赖项
~16KB