Convert Figma logo to code with AI

yuin logogoldmark

:trophy: A markdown parser written in Go. Easy to extend, standard(CommonMark) compliant, well structured.

3,563
254
3,563
18

Top Related Projects

Blackfriday: a markdown processor for Go

markdown parser and HTML renderer for Go

1,062

🎼 一款结构化的 Markdown 引擎,支持 Go 和 JavaScript。A structured Markdown engine that supports Go and JavaScript.

4,301

A general purpose syntax highlighter in pure Go

Quick Overview

Goldmark is a Markdown parser and renderer written in Go. It aims to be compliant with CommonMark and GitHub Flavored Markdown (GFM) specifications while offering extensibility and performance.

Pros

  • High performance and memory efficiency
  • Extensible architecture allowing custom syntax and rendering
  • Strict compliance with CommonMark and GFM specifications
  • Active development and maintenance

Cons

  • Learning curve for advanced customization
  • Limited built-in extensions compared to some other Markdown parsers
  • May require additional configuration for specific use cases

Code Examples

  1. Basic Markdown to HTML conversion:
import "github.com/yuin/goldmark"

markdown := goldmark.New()
var buf bytes.Buffer
if err := markdown.Convert([]byte("# Hello, Goldmark!"), &buf); err != nil {
    panic(err)
}
fmt.Println(buf.String())
  1. Using extensions (e.g., tables):
import (
    "github.com/yuin/goldmark"
    "github.com/yuin/goldmark/extension"
)

markdown := goldmark.New(
    goldmark.WithExtensions(extension.Table),
)
// Use markdown.Convert() as in the previous example
  1. Custom rendering:
import (
    "github.com/yuin/goldmark"
    "github.com/yuin/goldmark/renderer"
    "github.com/yuin/goldmark/renderer/html"
)

markdown := goldmark.New(
    goldmark.WithRenderer(
        renderer.NewRenderer(
            renderer.WithNodeRenderers(
                util.Prioritized(html.NewRenderer(), 1000),
            ),
        ),
    ),
)
// Use markdown.Convert() as in the first example

Getting Started

To use Goldmark in your Go project, follow these steps:

  1. Install Goldmark:
go get github.com/yuin/goldmark
  1. Import and use in your code:
import (
    "bytes"
    "fmt"
    "github.com/yuin/goldmark"
)

func main() {
    markdown := goldmark.New()
    var buf bytes.Buffer
    if err := markdown.Convert([]byte("# Hello, Goldmark!"), &buf); err != nil {
        panic(err)
    }
    fmt.Println(buf.String())
}

This basic example converts a Markdown string to HTML. You can extend functionality by adding extensions or customizing the renderer as shown in the code examples above.

Competitor Comparisons

Blackfriday: a markdown processor for Go

Pros of Blackfriday

  • More established and widely used in the Go ecosystem
  • Faster parsing and rendering performance for large documents
  • Supports some additional Markdown extensions not found in Goldmark

Cons of Blackfriday

  • Less actively maintained, with fewer recent updates
  • More rigid architecture, making it harder to extend or customize
  • Some compatibility issues with CommonMark specification

Code Comparison

Blackfriday:

import "github.com/russross/blackfriday/v2"

output := blackfriday.Run(input)

Goldmark:

import "github.com/yuin/goldmark"

var markdown goldmark.Markdown
var buf bytes.Buffer
if err := markdown.Convert(input, &buf); err != nil {
    panic(err)
}

Goldmark offers a more flexible API with better error handling, while Blackfriday provides a simpler, one-line conversion. Goldmark's approach allows for easier customization and extension of the parsing process.

Both libraries are popular choices for Markdown parsing in Go, but Goldmark is gaining traction due to its modern architecture, extensibility, and strict CommonMark compliance. Blackfriday remains a solid option for projects prioritizing speed and compatibility with existing codebases.

markdown parser and HTML renderer for Go

Pros of markdown

  • More established project with longer history and larger community
  • Supports CommonMark specification out of the box
  • Offers a wider range of extensions and customization options

Cons of markdown

  • Slower parsing and rendering performance compared to goldmark
  • Less active development and maintenance in recent years
  • More complex API, which can be harder for beginners to use

Code Comparison

markdown:

extensions := parser.CommonExtensions | parser.AutoHeadingIDs
parser := parser.NewWithExtensions(extensions)
html := markdown.ToHTML(input, parser, nil)

goldmark:

markdown := goldmark.New(
    goldmark.WithExtensions(extension.GFM),
    goldmark.WithParserOptions(
        parser.WithAutoHeadingID(),
    ),
)
var buf bytes.Buffer
if err := markdown.Convert(input, &buf); err != nil {
    panic(err)
}

Both libraries offer similar functionality, but goldmark's API is more streamlined and easier to use. The markdown library requires more configuration to achieve the same result, while goldmark provides a more intuitive interface for common use cases.

1,062

🎼 一款结构化的 Markdown 引擎,支持 Go 和 JavaScript。A structured Markdown engine that supports Go and JavaScript.

Pros of Lute

  • Supports more Markdown extensions and custom syntax
  • Faster parsing and rendering performance
  • Includes built-in text formatting and code highlighting features

Cons of Lute

  • Less actively maintained (fewer recent updates)
  • Smaller community and fewer third-party integrations
  • Documentation primarily in Chinese, which may be a barrier for some users

Code Comparison

Lute:

engine := lute.New()
html := engine.MarkdownStr("lute", "# Hello, Lute!")

Goldmark:

markdown := goldmark.New()
var buf bytes.Buffer
if err := markdown.Convert([]byte("# Hello, Goldmark!"), &buf); err != nil {
    panic(err)
}
html := buf.String()

Both Lute and Goldmark are Markdown parsers written in Go. Lute offers more features and better performance, while Goldmark has a larger community and more frequent updates. Lute's syntax is simpler for basic usage, but Goldmark provides more flexibility for customization. The choice between them depends on specific project requirements, performance needs, and the importance of community support.

4,301

A general purpose syntax highlighter in pure Go

Pros of Chroma

  • Specialized in syntax highlighting for various programming languages
  • Supports a wide range of output formats (HTML, terminal, etc.)
  • Highly customizable with themes and styles

Cons of Chroma

  • Focused solely on syntax highlighting, not a full Markdown parser
  • May require additional setup for integration with Markdown processing
  • Potentially higher resource usage for complex syntax highlighting

Code Comparison

Chroma (syntax highlighting):

lexer := lexers.Get("go")
iterator, _ := lexer.Tokenise(nil, sourceCode)
formatter := formatters.Get("html")
formatter.Format(os.Stdout, style, iterator)

Goldmark (Markdown parsing):

var buf bytes.Buffer
if err := goldmark.Convert([]byte(source), &buf); err != nil {
    panic(err)
}
fmt.Print(buf.String())

Summary

Chroma is a specialized syntax highlighting library, while Goldmark is a Markdown parser. Chroma excels in providing rich syntax highlighting for various languages and output formats, making it ideal for code-heavy documentation or syntax-aware applications. Goldmark, on the other hand, offers a complete Markdown parsing solution with extensibility options. The choice between the two depends on whether the primary need is syntax highlighting (Chroma) or full Markdown processing (Goldmark).

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

goldmark

https://pkg.go.dev/github.com/yuin/goldmark https://github.com/yuin/goldmark/actions?query=workflow:test https://coveralls.io/github/yuin/goldmark https://goreportcard.com/report/github.com/yuin/goldmark

A Markdown parser written in Go. Easy to extend, standards-compliant, well-structured.

goldmark is compliant with CommonMark 0.31.2.

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 @username mention 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 optionTypeDescription
parser.WithContextA parser.ContextContext for the parsing phase.

Context options

Functional optionTypeDescription
parser.WithIDsA parser.IDsIDs 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 optionTypeDescription
goldmark.WithParserparser.ParserThis option must be passed before goldmark.WithParserOptions and goldmark.WithExtensions
goldmark.WithRendererrenderer.RendererThis 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 optionTypeDescription
parser.WithBlockParsersA util.PrioritizedSlice whose elements are parser.BlockParserParsers for parsing block level elements.
parser.WithInlineParsersA util.PrioritizedSlice whose elements are parser.InlineParserParsers for parsing inline level elements.
parser.WithParagraphTransformersA util.PrioritizedSlice whose elements are parser.ParagraphTransformerTransformers for transforming paragraph nodes.
parser.WithASTTransformersA util.PrioritizedSlice whose elements are parser.ASTTransformerTransformers for transforming an AST.
parser.WithAutoHeadingID-Enables auto heading ids.
parser.WithAttribute-Enables custom attributes. Currently only headings supports attributes.

HTML Renderer options

Functional optionTypeDescription
html.WithWriterhtml.Writerhtml.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

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 optionTypeDescription
extension.WithTableCellAlignMethodextension.TableCellAlignMethodOption indicates how are table cells aligned.

Typographer extension

The Typographer extension translates plain ASCII punctuation characters into typographic-punctuation HTML entities.

Default substitutions are:

PunctuationDefault entity
'&lsquo;, &rsquo;
"&ldquo;, &rdquo;
--&ndash;
---&mdash;
...&hellip;
<<&laquo;
>>&raquo;

You can override the default substitutions via extensions.WithTypographicSubstitutions:

markdown := goldmark.New(
    goldmark.WithExtensions(
        extension.NewTypographer(
            extension.WithTypographicSubstitutions(extension.TypographicSubstitutions{
                extension.LeftSingleQuote:  []byte("&sbquo;"),
                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 optionTypeDescription
extension.WithLinkifyAllowedProtocols[][]byte | []stringList of allowed protocols such as []string{ "http:" }
extension.WithLinkifyURLRegexp*regexp.RegexpRegexp that defines URLs, including protocols
extension.WithLinkifyWWWRegexp*regexp.RegexpRegexp that defines URL starting with www.. This pattern corresponds to the extended www autolink
extension.WithLinkifyEmailRegexp*regexp.RegexpRegexp 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 optionTypeDescription
extension.WithFootnoteIDPrefix[]byte | stringa prefix for the id attributes.
extension.WithFootnoteIDPrefixFunctionfunc(gast.Node) []bytea function that determines the id attribute for given Node.
extension.WithFootnoteLinkTitle[]byte | stringan optional title attribute for footnote links.
extension.WithFootnoteBacklinkTitle[]byte | stringan optional title attribute for footnote backlinks.
extension.WithFootnoteLinkClass[]byte | stringa class for footnote links. This defaults to footnote-ref.
extension.WithFootnoteBacklinkClass[]byte | stringa class for footnote backlinks. This defaults to footnote-backref.
extension.WithFootnoteBacklinkHTML[]byte | stringa class for footnote backlinks. This defaults to &#x21a9;&#xfe0e;.

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 optionTypeDescription
extension.WithEastAsianLineBreaks...extension.EastAsianLineBreaksStyleSoft 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

StyleDescription
EastAsianLineBreaksStyleSimpleSoft 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.
EastAsianLineBreaksCSS3DraftThis 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

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:

  1. Define AST Node as a struct in which ast.BaseBlock or ast.BaseInline is embedded.
  2. Write a parser that implements parser.BlockParser or parser.InlineParser.
  3. Write a renderer that implements renderer.NodeRenderer.
  4. Define your goldmark extension that implements goldmark.Extender.

Donation

BTC: 1NEDSyUmo4SMTDP83JJQSWi1MvQUGGNMZB

License

MIT

Author

Yusuke Inuzuka