1.0.0
| 2020年8月2日 |
0.1.0
| 2020年8月2日 |
#15 在 #markdown-text
每月163次 下载
在 find-typos 中使用
Markdown to text
这个Rust库将Markdown转换为纯文本。
使用方法
将其添加到您的 Cargo.toml
[dependencies]
markdown_to_text = '1.0'
let markdown: String = [...];
let plain_text: String = markdown_to_text::convert(&markdown);