A tool that formats markdown text in Chinese.
Project description
prettymd
A tool that formats markdown text in Chinese.
Install
- 从 pypi 安装
pip install prettymd
Features
-
在中英文之间添加空格
$ python -m prettymd "我是中文nihao呀" 我是中文 nihao 呀
-
将英文变为代码风格。指定 style = 'code',将英文用反引号包裹起来
$ python -m prettymd "我是中文nihao呀" -s code 我是中文 `nihao` 呀
-
从文件读取内容
$ cat .\tests\testfile.md 摘要算法就是通过摘要函数f()对任意长度的数据data计算出固定长度的摘要digest,目的是为了发现原始数据是否被人篡改过。 $ python -m prettymd -f .\tests\testfile.md 摘要算法就是通过摘要函数 f() 对任意长度的数据 data 计算出固定长度的摘要 digest,目的是为了发现原始数据是否被人篡改过。
-
输出到指定文件
$ # -o 指定输出文件路径 $ python -m prettymd -f .\tests\testfile.md -o testfile.md $ cat testfile.md 摘要算法就是通过摘要函数 f() 对任意长度的数据 data 计算出固定长度的摘要 digest,目的是为了发现原始数据是否被人篡改过。
-
代码调用
>>> from prettymd import format >>> format('这是一个示例rst文档') '这是一个实例 rst 文档' >>> from prettymd import format >>> format('这是一个示例rst文档', style='code') '这是一个实例 `rst` 文档' >>> # 为标题添加索引 >>> from prettymd import format >>> print(format(""" ## h2 ### h3 ## h22 #### h4 """)) ## 1. h2 ### 1.1. h3 ## 2. h22 #### 2.0.1. h4
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
prettymd-0.1.111.tar.gz
(14.6 kB
view hashes)
Built Distribution
Close
Hashes for prettymd-0.1.111-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 473738ec082cf10598ab0cf94e6bfa4c1cff31a49e95ea0c1ed572939b2e4e43 |
|
MD5 | af3d4865deda802c4cac69804c166a49 |
|
BLAKE2b-256 | f19203dfb5297909e39df41f77ba79cd2d2c4486c1b88945a52fbc91a204f749 |