yuin/goldmark

Điểm qua yuin/goldmark: 4.9k sao trên GitHub, viết chủ yếu bằng Go, thuộc nhóm Backend. :trophy: A markdown parser written in Go. Easy to extend, standard(CommonMark) compliant, well structured.
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
Snapshot
Cộng tác viên hàng đầu
Xem cộng tác viên hàng đầu
goldmark
A Markdown parser written in Go. Easy to extend, standards-compliant, well-structured.
goldmark is compliant with CommonMark 0.31.2.
- goldmark playground : Try goldmark online. This playground is built with WASM(5-10MB).
There is also a Rust version of goldmark: rushdown
Motivation
I needed a Markdown parser for Go that satisfies the following requirements:
- Easy to extend.
- Markdown is poor in document expressions compared to other light markup languages such as reStructuredText.
- We have extensions to the Markdown syntax, e.g. PHP Markdown Extra, GitHub Flavored Markdown.
- Standards-compliant.
- Markdown has many dialects.
- GitHub-Flavored Markdown is widely used and is based upon CommonMark, effectively mooting the question of whether or not CommonMark is an ideal specification.
- CommonMark is complicated and hard to implement.
- Well-structured.
- AST-based; preserves source position of nodes.
- Written in pure Go.
golang-commonmark may be a good choice, but it seems to be a copy of markdown-it.
blackfriday.v2 is a fast and widely-used implementation, but is not CommonMark-compliant and cannot be extended from outside of the package, since its AST uses structs instead of interfaces.
Furthermore, its behavior differs from other implementations in some cases, especially regarding lists: Deep nested lists don't output correctly #329, List block cannot have a second line #244, etc.
This behavior sometimes causes problems. If you migrate your Markdown text from GitHub to blackfriday-based wikis, many lists will immediately be broken.
As mentioned above, CommonMark is complicated and hard to implement, so Markdown parsers based on CommonMark are few and far between.
Features
- Standards-compliant. goldmark is fully compliant with the latest CommonMark specification.
- Extensible. Do you want to add a
@usernamemention syntax to Markdown? You can easily do so in goldmark. You can add your AST nodes, parsers for block-level elements, parsers for inline-level elements, transformers for paragraphs, transformers for the whole AST structure, and renderers. - Performance. goldmark's performance is on par with that of cmark, the CommonMark reference implementation written in C.
- Robust. goldmark is tested with
go test --fuzz. - Built-in extensions. goldmark ships with common extensions like tables, strikethrough, task lists, and definition lists.
- Depends only on standard libraries.
Installation
$ go get github.com/yuin/goldmark
Usage
Import packages:
import (
"bytes"
"github.com/yuin/goldmark"
)
Convert Markdown documents with the CommonMark-compliant mode:
var buf bytes.Buffer
if err := goldmark.Convert(source, &buf); err != nil {
panic(err)
}
With options
var buf bytes.Buffer
if err := goldmark.Convert(source, &buf, parser.WithContext(ctx)); err != nil {
panic(err)
}
| Functional option | Type | Description |
|---|---|---|
parser.WithContext | A parser.Context | Context for the parsing phase. |
Context options
| Functional option | Type | Description |
|---|---|---|
parser.WithIDs | A parser.IDs | IDs allows you to change logics that are related to element id(ex: Auto heading id generation). |
Custom parser and renderer
import (
"bytes"
"github.com/yuin/goldmark"
"github.com/yuin/goldmark/extension"
"github.com/yuin/goldmark/parser"
"github.com/yuin/goldmark/renderer/html"
)
md := goldmark.New(
goldmark.WithExtensions(extension.GFM),
goldmark.WithParserOptions(
parser.WithAutoHeadingID(),
),
goldmark.WithRendererOptions(
html.WithHardWraps(),
html.WithXHTML(),
),
)
var buf bytes.Buffer
if err := md.Convert(source, &buf); err != nil {
panic(err)
}
| Functional option | Type | Description |
|---|---|---|
goldmark.WithParser | parser.Parser | This option must be passed before goldmark.WithParserOptions and goldmark.WithExtensions |
goldmark.WithRenderer | renderer.Renderer | This option must be passed before goldmark.WithRendererOptions and goldmark.WithExtensions |
goldmark.WithParserOptions | ...parser.Option | |
goldmark.WithRendererOptions | ...renderer.Option | |
goldmark.WithExtensions | ...goldmark.Extender |
Parser and Renderer options
Parser options
| Functional option | Type | Description |
|---|---|---|
parser.WithBlockParsers | A util.PrioritizedSlice whose elements are parser.BlockParser | Parsers for parsing block level elements. |
parser.WithInlineParsers | A util.PrioritizedSlice whose elements are parser.InlineParser | Parsers for parsing inline level elements. |
parser.WithParagraphTransformers | A util.PrioritizedSlice whose elements are parser.ParagraphTransformer | Transformers for transforming paragraph nodes. |
parser.WithASTTransformers | A util.PrioritizedSlice whose elements are parser.ASTTransformer | Transformers for transforming an AST. |
parser.WithAutoHeadingID | - | Enables auto heading ids. |
parser.WithAttribute | - | Enables custom attributes. Currently only headings supports attributes. |
HTML Renderer options
| Functional option | Type | Description |
|---|---|---|
html.WithWriter | html.Writer | html.Writer for writing contents to an io.Writer. |
html.WithHardWraps | - | Render newlines as <br>. |
html.WithXHTML | - | Render as XHTML. |
html.WithUnsafe | - | By default, goldmark does not render raw HTML or potentially dangerous links. With this option, goldmark renders such content as written. |
Built-in extensions
extension.Table- GitHub Flavored Markdown: Tables
extension.Strikethrough- GitHub Flavored Markdown: Strikethrough
extension.Linkify- GitHub Flavored Markdown: Autolinks
extension.TaskList- GitHub Flavored Markdown: Task list items
extension.GFM- This extension enables Table, Strikethrough, Linkify and TaskList.
- This extension does not filter tags defined in 6.11: Disallowed Raw HTML (extension). If you need to filter HTML tags, see Security.
- If you need to parse github emojis, you can use goldmark-emoji extension.
extension.DefinitionList- PHP Markdown Extra: Definition lists
extension.Footnote- PHP Markdown Extra: Footnotes
extension.Typographer- This extension substitutes punctuations with typographic entities like smartypants.
extension.CJK- This extension is a shortcut for CJK related functionalities.
Attributes
The parser.WithAttribute option allows you to define attributes on some elements.
Currently only headings support attributes.
Attributes are being discussed in the CommonMark forum. This syntax may possibly change in the future.
Headings
## heading ## {#id .className attrName=attrValue class="class1 class2"}
## heading {#id .className attrName=attrValue class="class1 class2"}
heading {#id .className attrName=attrValue}
============
Table extension
The Table extension implements Table(extension), as defined in GitHub Flavored Markdown Spec.
Specs are defined for XHTML, so specs use some deprecated attributes for HTML5.
You can override alignment rendering method via options.
| Functional option | Type | Description |
|---|---|---|
extension.WithTableCellAlignMethod | extension.TableCellAlignMethod | Option indicates how are table cells aligned. |
Typographer extension
The Typographer extension translates plain ASCII punctuation characters into typographic-punctuation HTML entities.
Default substitutions are:
| Punctuation | Default entity |
|---|---|
' | ‘, ’ |
" | “, ” |
-- | – |
--- | — |
... | … |
<< | « |
>> | » |
You can override the default substitutions via extensions.WithTypographicSubstitutions:
markdown := goldmark.New(
goldmark.WithExtensions(
extension.NewTypographer(
extension.WithTypographicSubstitutions(extension.TypographicSubstitutions{
extension.LeftSingleQuote: []byte("‚"),
extension.RightSingleQuote: nil, // nil disables a substitution
}),
),
),
)
Linkify extension
The Linkify extension implements Autolinks(extension), as defined in GitHub Flavored Markdown Spec.
Since the spec does not define details about URLs, there are numerous ambiguous cases.
You can override autolinking patterns via options.
| Functional option | Type | Description |
|---|---|---|
extension.WithLinkifyAllowedProtocols | [][]byte | []string | List of allowed protocols such as []string{ "http:" } |
extension.WithLinkifyURLRegexp | *regexp.Regexp | Regexp that defines URLs, including protocols |
extension.WithLinkifyWWWRegexp | *regexp.Regexp | Regexp that defines URL starting with www.. This pattern corresponds to the extended www autolink |
extension.WithLinkifyEmailRegexp | *regexp.Regexp | Regexp that defines email addresses` |
Example, using xurls:
import "mvdan.cc/xurls/v2"
markdown := goldmark.New(
goldmark.WithRendererOptions(
html.WithXHTML(),
html.WithUnsafe(),
),
goldmark.WithExtensions(
extension.NewLinkify(
extension.WithLinkifyAllowedProtocols([]string{
"http:",
"https:",
}),
extension.WithLinkifyURLRegexp(
xurls.Strict(),
),
),
),
)
Footnotes extension
The Footnote extension implements PHP Markdown Extra: Footnotes.
This extension has some options:
| Functional option | Type | Description |
|---|---|---|
extension.WithFootnoteIDPrefix | []byte | string | a prefix for the id attributes. |
extension.WithFootnoteIDPrefixFunction | func(gast.Node) []byte | a function that determines the id attribute for given Node. |
extension.WithFootnoteLinkTitle | []byte | string | an optional title attribute for footnote links. |
extension.WithFootnoteBacklinkTitle | []byte | string | an optional title attribute for footnote backlinks. |
extension.WithFootnoteLinkClass | []byte | string | a class for footnote links. This defaults to footnote-ref. |
extension.WithFootnoteBacklinkClass | []byte | string | a class for footnote backlinks. This defaults to footnote-backref. |
extension.WithFootnoteBacklinkHTML | []byte | string | a class for footnote backlinks. This defaults to ↩︎. |
Some options can have special substitutions. Occurrences of “^^” in the string will be replaced by the corresponding footnote number in the HTML output. Occurrences of “%%” will be replaced by a number for the reference (footnotes can have multiple references).
extension.WithFootnoteIDPrefix and extension.WithFootnoteIDPrefixFunction are useful if you have multiple Markdown documents displayed inside one HTML document to avoid footnote ids to clash each other.
extension.WithFootnoteIDPrefix sets fixed id prefix, so you may write codes like the following:
for _, path := range files {
source := readAll(path)
prefix := getPrefix(path)
markdown := goldmark.New(
goldmark.WithExtensions(
NewFootnote(
WithFootnoteIDPrefix(path),
),
),
)
var b bytes.Buffer
err := markdown.Convert(source, &b)
if err != nil {
t.Error(err.Error())
}
}
extension.WithFootnoteIDPrefixFunction determines an id prefix by calling given function, so you may write codes like the following:
markdown := goldmark.New(
goldmark.WithExtensions(
NewFootnote(
WithFootnoteIDPrefixFunction(func(n gast.Node) []byte {
v, ok := n.OwnerDocument().Meta()["footnote-prefix"]
if ok {
return util.StringToReadOnlyBytes(v.(string))
}
return nil
}),
),
),
)
for _, path := range files {
source := readAll(path)
var b bytes.Buffer
doc := markdown.Parser().Parse(text.NewReader(source))
doc.Meta()["footnote-prefix"] = getPrefix(path)
err := markdown.Renderer().Render(&b, source, doc)
}
You can use goldmark-meta to define a id prefix in the markdown document:
---
title: document title
slug: article1
footnote-prefix: article1
---
# My article
CJK extension
CommonMark gives compatibilities a high priority and original markdown was designed by westerners. So CommonMark lacks considerations for languages like CJK.
This extension provides additional options for CJK users.
| Functional option | Type | Description |
|---|---|---|
extension.WithEastAsianLineBreaks | ...extension.EastAsianLineBreaksStyle | Soft line breaks are rendered as a newline. Some asian users will see it as an unnecessary space. With this option, soft line breaks between east asian wide characters will be ignored. This defaults to EastAsianLineBreaksStyleSimple. |
extension.WithEscapedSpace | - | Without spaces around an emphasis started with east asian punctuations, it is not interpreted as an emphasis(as defined in CommonMark spec). With this option, you can avoid this inconvenient behavior by putting 'not rendered' spaces around an emphasis like 太郎は\ **「こんにちわ」**\ といった. |
Styles of Line Breaking
| Style | Description |
|---|---|
EastAsianLineBreaksStyleSimple | Soft line breaks are ignored if both sides of the break are east asian wide character. This behavior is the same as east_asian_line_breaks in Pandoc. |
EastAsianLineBreaksCSS3Draft | This option implements CSS text level3 Segment Break Transformation Rules with some enhancements. |
Example of EastAsianLineBreaksStyleSimple
Input Markdown:
私はプログラマーです。
東京の会社に勤めています。
GoでWebアプリケーションを開発しています。
Output:
<p>私はプログラマーです。東京の会社に勤めています。\nGoでWebアプリケーションを開発しています。</p>
Example of EastAsianLineBreaksCSS3Draft
Input Markdown:
私はプログラマーです。
東京の会社に勤めています。
GoでWebアプリケーションを開発しています。
Output:
<p>私はプログラマーです。東京の会社に勤めています。GoでWebアプリケーションを開発しています。</p>
Security
By default, goldmark does not render raw HTML or potentially-dangerous URLs. If you need to gain more control over untrusted contents, it is recommended that you use an HTML sanitizer such as bluemonday.
Benchmark
You can run this benchmark in the _benchmark directory.
against other golang libraries
blackfriday v2 seems to be the fastest, but as it is not CommonMark compliant, its performance cannot be directly compared to that of the CommonMark-compliant libraries.
goldmark, meanwhile, builds a clean, extensible AST structure, achieves full compliance with CommonMark, and consumes less memory, all while being reasonably fast.
- MBP 2019 13″(i5, 16GB), Go1.17
BenchmarkMarkdown/Blackfriday-v2-8 302 3743747 ns/op 3290445 B/op 20050 allocs/op
BenchmarkMarkdown/GoldMark-8 280 4200974 ns/op 2559738 B/op 13435 allocs/op
BenchmarkMarkdown/CommonMark-8 226 5283686 ns/op 2702490 B/op 20792 allocs/op
BenchmarkMarkdown/Lute-8 12 92652857 ns/op 10602649 B/op 40555 allocs/op
BenchmarkMarkdown/GoMarkdown-8 13 81380167 ns/op 2245002 B/op 22889 allocs/op
against cmark (CommonMark reference implementation written in C)
- MBP 2019 13″(i5, 16GB), Go1.17
----------- cmark -----------
file: _data.md
iteration: 50
average: 0.0044073057 sec
------- goldmark -------
file: _data.md
iteration: 50
average: 0.0041611990 sec
As you can see, goldmark's performance is on par with cmark's.
Extensions
List of extensions
- goldmark-meta: A YAML metadata extension for the goldmark Markdown parser.
- goldmark-highlighting: A syntax-highlighting extension for the goldmark markdown parser.
- goldmark-emoji: An emoji extension for the goldmark Markdown parser.
- goldmark-mathjax: Mathjax support for the goldmark markdown parser
- goldmark-pdf: A PDF renderer that can be passed to
goldmark.WithRenderer(). - goldmark-hashtag: Adds support for
#hashtag-based tagging to goldmark. - goldmark-wikilink: Adds support for
[[wiki]]-style links to goldmark. - goldmark-anchor: Adds anchors (permalinks) next to all headers in a document.
- goldmark-figure: Adds support for rendering paragraphs starting with an image to
<figure>elements. - goldmark-frontmatter: Adds support for YAML, TOML, and custom front matter to documents.
- goldmark-toc: Adds support for generating tables-of-contents for goldmark documents.
- goldmark-mermaid: Adds support for rendering Mermaid diagrams in goldmark documents.
- goldmark-pikchr: Adds support for rendering Pikchr diagrams in goldmark documents.
- goldmark-embed: Adds support for rendering embeds from YouTube links.
- goldmark-latex: A $\LaTeX$ renderer that can be passed to
goldmark.WithRenderer(). - goldmark-fences: Support for pandoc-style fenced divs in goldmark.
- goldmark-d2: Adds support for D2 diagrams.
- goldmark-katex: Adds support for KaTeX math and equations.
- goldmark-img64: Adds support for embedding images into the document as DataURL (base64 encoded).
- goldmark-enclave: Adds support for embedding youtube/bilibili video, X's oembed X, tradingview chart's chart, quaily widget, spotify embeds, dify embed and html audio into the document.
- goldmark-wiki-table: Adds support for embedding Wiki Tables.
- goldmark-tgmd: A Telegram markdown renderer that can be passed to
goldmark.WithRenderer(). - goldmark-treeblood: Renders $\LaTeX$ expressions as MathML (pure Go, no external dependencies).
- goldmark-subtext: Support for Discord-style markdown subtexts
- goldmark-customtag: Allows you to define custom block tags.
- goldmark-cjk-friendly: Port of npm package
remark-cjk-friendly/markdown-it-cjk-friendlyto goldmark. Similar to the CJK extension (WithEscapedSpace), but you do not need to explicitly add\around*and**. You can combine this with the CJK extension. - goldmark-chart: Generate static ChartJS charts using the simple Markvis format.
Loading extensions at runtime
goldmark-dynamic allows you to write a goldmark extension in Lua and load it at runtime without re-compilation.
Please refer to goldmark-dynamic for details.
goldmark internal(for extension developers)
Overview
goldmark's Markdown processing is outlined in the diagram below.
<Markdown in []byte, parser.Context>
|
V
+-------- parser.Parser ---------------------------
| 1. Parse block elements into AST
| 1. If a parsed block is a paragraph, apply
| ast.ParagraphTransformer
| 2. Traverse AST and parse blocks.
| 1. Process delimiters(emphasis) at the end of
| block parsing
| 3. Apply parser.ASTTransformers to AST
|
V
<ast.Node>
|
V
+------- renderer.Renderer ------------------------
| 1. Traverse AST and apply renderer.NodeRenderer
| corespond to the node type
|
V
<Output>
Parsing
Markdown documents are read through text.Reader interface.
AST nodes do not have concrete text. AST nodes have segment information of the documents, represented by text.Segment .
text.Segment has 3 attributes: Start, End, Padding .
(TBC)
TODO
See extension directory for examples of extensions.
Summary:
- Define AST Node as a struct in which
ast.BaseBlockorast.BaseInlineis embedded. - Write a parser that implements
parser.BlockParserorparser.InlineParser. - Write a renderer that implements
renderer.NodeRenderer. - Define your goldmark extension that implements
goldmark.Extender.
Donation
BTC: 1NEDSyUmo4SMTDP83JJQSWi1MvQUGGNMZB
License
MIT
Author
Yusuke Inuzuka
Repo liên quan
Awesome Go, maintained at avelino/awesome-go, groups Go frameworks, libraries, and software into topic categories including Actor Model, Artificial Intelligence, Audio and Music, Authentication and Authorization, Blockchain, Bot Building, and Build Automation. Every linked entry gets a short description instead of a bare URL. The repository carries an MIT license and takes new entries through pull requests reviewed against its own contribution guidelines, which makes it a common bookmark for day-to-day Go development.
golang/go is the open source repository behind The Go Programming Language, holding the compiler, runtime, and standard library source that Go's official binaries are built from. The README frames Go's purpose as building software that is simple, reliable, and efficient, credits the project to thousands of contributors, and notes that this GitHub repo mirrors the canonical Git repository at go.googlesource.com/go.
Caddy is an HTTP/1-2-3 web server, written in Go, which provides automatic HTTPS by default, utilizing services like ZeroSSL and Let's Encrypt for public names or a local CA for internal ones. It supports flexible configuration through its native JSON API, a Caddyfile, or various other formats via config adapters. The project highlights a modular architecture for extensibility, runs on multiple platforms without external dependencies, and benefits from Go's memory safety features. The README indicates it has served trillions of requests and managed millions of TLS certificates, scaling to hundreds of thousands of sites in production. Caddy began development in 2014 and was an early adopter of automatic HTTPS by default.
Moby is the open-source project moby/moby on GitHub, created by Docker to package the pieces of a container system, build tools, a registry, orchestration tools, and a runtime, as separate, well-defined components developers can assemble or swap. It is written in Go, and ships under the Apache-2.0 license. Docker uses Moby as the upstream for Docker Engine, and the two supported Go modules, client and api, are how other Go programs talk to Docker Engine's API.
Trả lời nhanh
Đọc thêm về yuin/goldmark ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/yuin/goldmark là nguồn chính thức.
yuin/goldmark có bao nhiêu sao?
yuin/goldmark có 4.9k sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/yuin/goldmark. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
yuin/goldmark có những chủ đề gì?
GitHub topics của yuin/goldmark: "commonmark", "go", "golang", "markdown". TopGit xếp repo vào nhóm Backend.
yuin/goldmark có website riêng không?
TopGit chưa ghi nhận URL trang chủ cho yuin/goldmark. Phần README ở tab phía trên thường có link demo, hoặc xem mô tả GitHub của repo.
yuin/goldmark còn đang phát triển không?
Commit gần nhất trên yuin/goldmark là 25 ngày trước (theo timestamp GitHub). Repo có 306 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
yuin/goldmark dùng license gì?
yuin/goldmark phát hành theo license MIT. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
yuin/goldmark viết bằng ngôn ngữ gì?
yuin/goldmark chủ yếu viết bằng Go. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Đọc đầy đủ README ở tab phía trên.
Chưa chắc goldmark có hợp với bạn?
Để ChatGPT, Claude hoặc Perplexity tìm hiểu giúp — bấm bên dưới và xem AI nói gì về goldmark.