add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/cmark.md Normal file
View File

@@ -0,0 +1,20 @@
# cmark
> 将 CommonMark Markdown 格式的文本转换为其他格式。
> 更多信息:<https://github.com/commonmark/cmark>。
- 将 CommonMark Markdown 文件渲染为 HTML
`cmark --to html {{filename.md}}`
- 将来自 `stdin` 的数据转换为 LaTeX
`cmark --to latex`
- 将直引号转换为智能引号:
`cmark --smart --to html {{filename.md}}`
- 验证 UTF-8 字符:
`cmark --validate-utf8 {{filename.md}}`