multiple pages: format technical tokens (#5119)

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
This commit is contained in:
Lucas Gabriel Schneider
2021-01-31 14:05:18 -03:00
committed by GitHub
parent dc690e38eb
commit a5fe31bc47
279 changed files with 409 additions and 410 deletions

View File

@@ -2,11 +2,11 @@
> 用于操作各种格式的文本文件.
- 显示有关 foo.rtf 的信息:
- 显示有关 `foo.rtf` 的信息:
`textutil -info {{foo.rtf}}`
- 将 foo.rtf 转换为 foo.html:
-`foo.rtf` 转换为 `foo.html`:
`textutil -convert {{html}} {{foo.rtf}}`
@@ -14,10 +14,10 @@
`textutil {{foo.rtf}} -convert {{txt}}`
- 将 foo.txt 转换为 foo.rtf, 字体使用 Times 字号 10:
-`foo.txt` 转换为 `foo.rtf`, 字体使用 Times 字号 10:
`textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{foo.txt}}`
- 加载当前目录中的所有 RTF 文件,连接其内容,并将结果作为 index.html 写入HTML 标题设置为"多个文件":
- 加载当前目录中的所有 RTF 文件,连接其内容,并将结果作为 `index.html` 写入HTML 标题设置为"多个文件":
`textutil -cat {{html}} -title "多个文件" -output {{index.html}} *.rtf`