小笔记:表 - 各种语言的 CommonMark Markdown解析器 实现

简介: 小笔记:表 - 各种语言的 CommonMark Markdown解析器 实现

表:各种语言的 CommonMark Markdown解析器 实现



1. 什么是 CommonMark

Markdown 的作者 John Gruber 对 Markdown 语法的规范描述并没有明确指定语法。在没有规范的情况下,早期的实现者参考了原始代码来解决这些歧义。但是它非常有问题,并且在许多情况下给出了明显不好的结果,因此它不是规格的令人满意的替代品。

由于没有明确的规范,因此在过去 10 年中,实现方式差异很大。因此,用户经常惊讶地发现,在一个系统(例如,GitHub wiki)上以一种方式呈现的文档在另一个系统上呈现方式不同(例如,使用 Pandoc 转换为文档手册)。更糟糕的是,由于 Markdown 中没有任何内容被视为“语法错误”,因此通常不会立即发现分歧。

CommonMark 为 Markdown 提出了一个标准的、明确的语法规范,以及一套全面的测试来验证 Markdown 实现是否符合这个规范。

2. 表:各种语言的 CommonMark Markdown解析器 实现

语言类型 项目名称 项目地址 说明
C cmark https://github.com/commonmark/cmark 是 CommonMark 的 C 参考实现,一个 带有规范的 Markdown 语法的合理化版本
C cmark-gfm https://github.com/github/cmark 是 CommonMark 的 C 参考实现的扩展版本,是带有规范的 Markdown 语法的合理化版本
C MD4C https://github.com/mity/md4c MD4C代表“Markdown for C”,这正是这个项目的意义所在。
C# CommonMark.NET https://github.com/Knagis/CommonMark.NET
C# Markdig https://github.com/lunet-io/markdig
Common Lisp cl-cmark https://gitlab.com/HiPhish/cl-cmark
Crystal markd https://github.com/icyleaf/markd
D commonmark-d https://github.com/p0nce/commonmark-d
D hunt-markdown https://github.com/huntlabs/hunt-markdown
Dart mdown https://github.com/dikmax/mdown 快速且符合CommonMark的Markdown解析器
Elixir Cmark https://github.com/asaaki/cmark.ex
Emacs Lisp cmark https://github.com/taku0/cmark-el
Go golang-commonmark/markdown https://gitlab.com/golang-commonmark/markdown 纯 Go 实现
Go go-commonmark https://github.com/rhinoman/go-commonmark 对C库的封装
Go goldmark https://github.com/yuin/goldmark
Go Lute https://github.com/88250/lute
Haskell cmark http://hackage.haskell.org/package/cmark 对C库的封装
Haskell commonmark-hs https://github.com/jgm/commonmark-hs 纯 Haskell 实现
Haxe necmark https://github.com/ConstNW/necmark 对C库的封装
Java commonmark-java https://github.com/commonmark/commonmark-java 纯Java实现
Java flexmark-java https://github.com/vsch/flexmark-java 纯Java实现,源代码级AST低至单个字符
JavaScript commonmark.js https://github.com/jgm/commonmark.js marked.js 就使用了它实现
JavaScript markdown-it https://github.com/markdown-it/markdown-it
JavaScript cmark-emscripten https://github.com/mvasilkov/cmark-emscripten C 库到 WebAssembly 的接口
JavaScript mdx https://github.com/mdx-js/mdx CommonMark 的超集,添加嵌入式 JSX 和导入/导出语法
JavaScript ciceromark https://github.com/accordproject/markdown-transform
Julia CommonMark.jl https://github.com/MichaelHatherly/CommonMark.jl
Lua cmark-lua https://github.com/jgm/cmark-lua
Lua lcmark https://github.com/jgm/lcmark
Perl CommonMark https://metacpan.org/release/CommonMark
PHP league/commonmark http://commonmark.thephpleague.com/
PHP cmark http://docs.php.net/cmark
Python commonmark.py https://github.com/rtfd/commonmark.py 直接基于commonmark的纯Python实现.js
Python markdown-it-py https://github.com/ExecutableBookProject/markdown-it-py markdown-it 库的纯 Python 版本
Python mistletoe https://github.com/miyuchina/mistletoe 纯 Python 中最快、可扩展的实现
Python paka.cmark https://github.com/PavloKapyshin/paka.cmark 对 C 语言实现的 cmark 的封装
Python Marko https://github.com/frostming/marko 一个纯粹的Python实现,专注于简单的可扩展性
Ruby/RubyMotion CommonMarker https://github.com/gjtorikian/commonmarker 对C库的封装
Ruby/RubyMotion motion-markdown-it https://github.com/digitalmoksha/motion-markdown-it/ 基于 JS markdown-it 库,移植到 Ruby 和 RubyMotion
R commonmark http://cran.r-project.org/package=commonmark 对C库的封装
Racket commonmark https://lexi-lambda.github.io/racket-commonmark/ 原生Racket ,具有完整的测试覆盖率
Rust comrak https://github.com/kivikakk/comrak 基于 cmark-gfm 的架构,带有 GitHub 扩展。
Rust pulldown-cmark https://github.com/google/pulldown-cmark 新颖的、以性能为导向的架构。
Scala cmark-scala https://github.com/sparsetech/cmark-scala
Scheme Down https://github.com/OrangeShark/guile-commonmark/
Swift Down https://github.com/iwasrobbed/Down
Swift SwiftMark https://github.com/Pyroh/SwiftMark 对C库的封装
Swift MarkdownSyntax https://github.com/hebertialmeida/MarkdownSyntax 包装用于 AST 访问的参考 C 库
Tcl tcl-cmark https://github.com/apnadkarni/tcl-cmark
TypeScript DefinitelyTyped https://github.com/DefinitelyTyped/DefinitelyTyped
TypeScript FlavorMark https://github.com/AnyhowStep/flavormark 重写 commonmark.js,专注于模块化解析逻辑
Zig koino https://github.com/kivikakk/koino 基于 Comrak/cmark-gfm 的架构,带有 GitHub 扩展
目录
相关文章
|
2月前
|
设计模式 Java 关系型数据库
【Java笔记+踩坑汇总】Java基础+JavaWeb+SSM+SpringBoot+SpringCloud+瑞吉外卖/谷粒商城/学成在线+设计模式+面试题汇总+性能调优/架构设计+源码解析
本文是“Java学习路线”专栏的导航文章,目标是为Java初学者和初中高级工程师提供一套完整的Java学习路线。
347 37
|
2天前
|
Go
|
22天前
新手编写markdown笔记一条龙
新手编写markdown笔记一条龙
30 0
|
30天前
http数据包抓包解析课程笔记
http数据包抓包解析课程笔记
|
2月前
|
存储 Shell Go
Go语言结构体和元组全面解析
Go语言结构体和元组全面解析
|
3月前
|
开发者 API 开发框架
Xamarin 在教育应用开发中的应用:从课程笔记到互动测验,全面解析使用Xamarin.Forms构建多功能教育平台的技术细节与实战示例
【8月更文挑战第31天】Xamarin 作为一款强大的跨平台移动开发框架,在教育应用开发中展现了巨大潜力。它允许开发者使用单一的 C# 代码库构建 iOS、Android 和 Windows 应用,确保不同设备上的一致体验。Xamarin 提供广泛的 API 支持,便于访问摄像头、GPS 等原生功能。本文通过一个简单的教育应用示例——课程笔记和测验功能,展示了 Xamarin 在实际开发中的应用过程。从定义用户界面到实现保存笔记和检查答案的逻辑,Xamarin 展现了其在教育应用开发中的高效性和灵活性。
41 0
|
3月前
|
SQL 关系型数据库 MySQL
|
3月前
|
存储 安全 程序员
|
3月前
|
存储 Go UED
精通Go语言的命令行参数解析
【8月更文挑战第31天】
37 0
|
22天前
|
缓存 Java 程序员
Map - LinkedHashSet&Map源码解析
Map - LinkedHashSet&Map源码解析
55 0

推荐镜像

更多