markdown格式化表格
本文基于原作者:https://github.com/dbrockman/reformat-markdown-table的基础上,再次基于 该作者: https://github.com/wangding/reformat-markdown-table 进行修改
功能
- 可以按照自己的需求,在各种编译器上相对性对markdown的表格进行对齐,由于字体原因,有些场景不能完全对齐。
- 可以对整个markdown进行格式化,而不是该文件中只包含一个表格
- 格式化前效果
## 标题
| 姓名 | 电话 | 邮箱 |
| --- | :---: | ---: |
| 王顶 | 13582027613 | 408542507@qq.com |
| 郭玉朝 | 13812347652 | baldy@163.com |
| | abc | def
- 格式化后效果
## 标题
| 姓名 | 电话 | 邮箱 |
|--------|:-----------:|-----------------:|
| 王顶 | 13582027613 | 408542507@qq.com |
| 郭玉朝 | 15703277652 | baldy@163.com |
| | abc | def |
安装使用
npm install reformat-markdown-cn -g
# 格式化一个文件
reformat-markdown-cn ./markdown/example.md
# 格式化多个文件
reformat-markdown-cn ./markdown/**/*.md
# 自定义字符对应
reformat-markdown-cn ./markdown/example.md -R '{"0": 0, "1": 2}'
reformat-markdown-cn ./markdown/**/*.md -R '{"0": 0, "1": 2}'
# 终端输出内容,不会覆盖源文件
reformat-markdown-cn ./markdown/example.md -R '{"0": 0, "1": 2}' -C
reformat-markdown-cn ./markdown/**/*.md -R '{"0": 0, "1": 2}' -C
项目地址: https://github.com/littleboyfury/reformat-markdown-table