Top Related Projects
Blackfriday: a markdown processor for Go
:trophy: A markdown parser written in Go. Easy to extend, standard(CommonMark) compliant, well structured.
CommonMark parsing and rendering library and program in C
A bidirectional Markdown to HTML to Markdown converter written in Javascript
A markdown parser and compiler. Built for speed.
Quick Overview
The gomarkdown/markdown
project is a Go library that provides a set of tools for parsing and rendering Markdown documents. It aims to be a fast, flexible, and extensible Markdown processor that can be used in a variety of applications.
Pros
- Fast and Efficient: The library is written in Go, which is known for its performance and efficiency, making it a suitable choice for processing large Markdown documents.
- Flexible and Extensible: The library provides a modular design, allowing users to easily extend or customize the Markdown parsing and rendering process.
- Comprehensive Markdown Support: The library supports a wide range of Markdown syntax, including standard Markdown, CommonMark, and GitHub-flavored Markdown.
- Active Development and Community: The project has an active community of contributors and is regularly maintained, ensuring ongoing improvements and bug fixes.
Cons
- Limited Documentation: The project's documentation could be more comprehensive, making it potentially challenging for new users to get started.
- Steep Learning Curve: Integrating the library into a project may require a significant amount of time and effort, especially for developers who are new to Go.
- Lack of Widespread Adoption: Compared to some other Markdown libraries,
gomarkdown/markdown
may not have the same level of widespread adoption and community support. - Potential Performance Issues: While the library is generally fast, it may not be as optimized for extremely large Markdown documents as some other solutions.
Code Examples
Here are a few examples of how to use the gomarkdown/markdown
library:
- Parsing Markdown to HTML:
package main
import (
"fmt"
"github.com/gomarkdown/markdown"
)
func main() {
input := []byte("# Hello, Markdown!")
html := markdown.ToHTML(input, nil, nil)
fmt.Println(string(html))
}
- Extending the Markdown Renderer:
package main
import (
"fmt"
"github.com/gomarkdown/markdown"
"github.com/gomarkdown/markdown/html"
)
type myRenderer struct {
html.Renderer
}
func (r *myRenderer) BlockCode(out *[]byte, text []byte, lang string) {
*out = append(*out, "<pre><code>"...)
*out = append(*out, text...)
*out = append(*out, "</code></pre>"...)
}
func main() {
input := []byte("```go\nfmt.Println(\"Hello, Markdown!\")\n```")
renderer := &myRenderer{html.NewRenderer(html.RendererOptions{})}
html := markdown.ToHTML(input, nil, renderer)
fmt.Println(string(html))
}
- Parsing Markdown to an Abstract Syntax Tree (AST):
package main
import (
"fmt"
"github.com/gomarkdown/markdown"
"github.com/gomarkdown/markdown/ast"
)
func main() {
input := []byte("# Hello, Markdown!\n\nThis is a paragraph.")
doc := markdown.Parse(input, nil)
ast.Walk(doc, func(node ast.Node, entering bool) ast.WalkStatus {
if entering {
fmt.Printf("Node type: %T\n", node)
}
return ast.GoToNext
})
}
Getting Started
To get started with the gomarkdown/markdown
library, follow these steps:
- Install the library using Go's package manager:
go get github.com/gomarkdown/markdown
- Import the library in your Go code:
import "github.com/gomarkdown/markdown"
- Use the library's functions to parse and render Markdown documents. For example, to convert Markdown to HTML:
input := []byte("# Hello, Markdown!")
html := markdown.ToHTML(input, nil, nil)
fmt.Println(string(html))
- Explore the library's documentation and examples to learn more about its features and how to
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
- Extensive customization options for rendering
Cons of Blackfriday
- No longer actively maintained (last commit in 2018)
- Less compliant with CommonMark specification
- Limited support for recent Markdown extensions
Code Comparison
Blackfriday:
import "github.com/russross/blackfriday/v2"
markdown := []byte("# Hello, World!")
html := blackfriday.Run(markdown)
Markdown:
import "github.com/gomarkdown/markdown"
md := []byte("# Hello, World!")
html := markdown.ToHTML(md, nil, nil)
Both libraries offer similar basic usage, but Markdown provides a more modular approach with separate parser and renderer components:
parser := parser.NewWithExtensions(extensions)
html := markdown.Render(parser.Parse(md), renderer)
Markdown offers better compliance with CommonMark and supports more recent Markdown extensions. It's actively maintained and provides a more flexible architecture for customization.
Blackfriday, while no longer actively developed, still offers excellent performance and is deeply integrated into many Go projects. However, for new projects or those requiring up-to-date Markdown support, Markdown is generally the recommended choice.
:trophy: A markdown parser written in Go. Easy to extend, standard(CommonMark) compliant, well structured.
Pros of goldmark
- Faster parsing and rendering performance
- More extensible architecture with pluggable extensions
- Better CommonMark compliance out-of-the-box
Cons of goldmark
- Smaller community and fewer contributors
- Less mature project with potentially more bugs
- Fewer built-in extensions compared to markdown
Code Comparison
goldmark:
md := goldmark.New(
goldmark.WithExtensions(extension.GFM),
goldmark.WithParserOptions(
parser.WithAutoHeadingID(),
),
)
markdown:
extensions := parser.CommonExtensions | parser.AutoHeadingIDs
md := parser.NewWithExtensions(extensions)
Both libraries offer similar ease of use for basic Markdown parsing, but goldmark provides more granular control over extensions and parsing options. The goldmark example demonstrates how to enable GitHub Flavored Markdown and auto-heading IDs, while the markdown example shows enabling common extensions and auto-heading IDs in a more compact manner.
Overall, goldmark offers better performance and extensibility, while markdown has a larger community and more built-in features. The choice between them depends on specific project requirements and preferences.
CommonMark parsing and rendering library and program in C
Pros of cmark
- Written in C, offering potentially better performance and wider language bindings
- Strictly adheres to the CommonMark specification, ensuring consistent parsing
- Extensive test suite with over 600 tests for compliance and edge cases
Cons of cmark
- Less flexible for custom extensions or modifications
- May have a steeper learning curve for contributors not familiar with C
- Smaller community and fewer contributors compared to markdown
Code Comparison
markdown (Go):
func (p *Parser) Parse(input []byte) ast.Node {
p.tip = p.doc
p.oldTip = p.tip
p.current = 0
p.line = 1
p.lineOffset = 0
p.nextNonspace = 0
p.nextNonspaceColumn = 0
p.indent = 0
p.indented = false
p.blank = false
p.allClosed = true
p.lastMatchedContainer = p.doc
p.active = nil
p.brackets = nil
p.lastBracket = nil
p.inlineCallback = nil
}
cmark (C):
static void cmark_parser_reset(cmark_parser *parser) {
memset(parser->linebuf, 0, sizeof(parser->linebuf));
parser->linebuf_offset = 0;
parser->first_nonspace = 0;
parser->first_nonspace_column = 0;
parser->indent = 0;
parser->blank = false;
parser->partially_consumed_tab = false;
parser->last_line_length = 0;
parser->current_line = 1;
}
Both repositories provide robust Markdown parsing capabilities, with cmark focusing on strict CommonMark compliance and potential performance benefits, while markdown offers more flexibility and a larger Go-based community.
A bidirectional Markdown to HTML to Markdown converter written in Javascript
Pros of Showdown
- JavaScript-based, making it ideal for client-side and Node.js applications
- Extensive customization options through extensions and configuration
- Active community with frequent updates and contributions
Cons of Showdown
- Generally slower performance compared to Go-based Markdown
- May produce less consistent output across different environments
- Larger file size and memory footprint in browser environments
Code Comparison
Showdown (JavaScript):
var converter = new showdown.Converter();
var html = converter.makeHtml('# Hello, Markdown!');
Markdown (Go):
md := []byte("# Hello, Markdown!")
output := markdown.ToHTML(md, nil, nil)
Key Differences
- Language: Showdown is written in JavaScript, while Markdown is implemented in Go
- Use case: Showdown is more suitable for web applications, while Markdown is better for server-side processing
- Performance: Markdown generally offers better performance due to Go's efficiency
- Extensibility: Showdown provides more built-in customization options, while Markdown focuses on core functionality
- Community: Both projects have active communities, but Showdown tends to have more frequent updates
Conclusion
Choose Showdown for web-based projects requiring extensive customization, and Markdown for server-side applications prioritizing performance and simplicity. Consider your specific use case, development environment, and performance requirements when selecting between these two Markdown parsing libraries.
A markdown parser and compiler. Built for speed.
Pros of marked
- Written in JavaScript, making it easy to integrate into web applications
- Faster parsing and rendering compared to markdown
- Extensive customization options and plugin system
Cons of marked
- Less strict adherence to CommonMark specification
- Limited support for some advanced Markdown features
- May require additional configuration for security measures
Code Comparison
marked:
import { marked } from 'marked';
const html = marked.parse('# Heading\n\nParagraph text');
console.log(html);
markdown:
package main
import (
"fmt"
"github.com/gomarkdown/markdown"
)
func main() {
md := []byte("# Heading\n\nParagraph text")
html := markdown.ToHTML(md, nil, nil)
fmt.Println(string(html))
}
The code examples demonstrate the basic usage of both libraries to convert Markdown to HTML. marked uses a more straightforward approach with a single function call, while markdown requires importing the package and using the ToHTML
function with additional parameters.
Both libraries offer similar core functionality, but their implementation and target languages differ. marked is ideal for JavaScript-based projects, especially in the browser, while markdown is better suited for Go applications and server-side rendering.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Markdown Parser and HTML Renderer for Go
Package github.com/gomarkdown/markdown
is a Go library for parsing Markdown text and rendering as HTML.
It's very fast and supports common extensions.
Tutorial: https://blog.kowalczyk.info/article/cxn3/advanced-markdown-processing-in-go.html
Code examples:
- https://tools.arslexis.io/goplayground/#txO7hJ-ibeU : basic markdown => HTML
- https://tools.arslexis.io/goplayground/#yFRIWRiu-KL : customize HTML renderer
- https://tools.arslexis.io/goplayground/#2yV5-HDKBUV : modify AST
- https://tools.arslexis.io/goplayground/#9fqKwRbuJ04 : customize parser
- https://tools.arslexis.io/goplayground/#Bk0zTvrzUDR : syntax highlight
Those examples are also in examples directory.
API Docs:
- https://pkg.go.dev/github.com/gomarkdown/markdown : top level package
- https://pkg.go.dev/github.com/gomarkdown/markdown/ast : defines abstract syntax tree of parsed markdown document
- https://pkg.go.dev/github.com/gomarkdown/markdown/parser : parser
- https://pkg.go.dev/github.com/gomarkdown/markdown/html : html renderer
Usage
To convert markdown text to HTML using reasonable defaults:
package main
import (
"os"
"github.com/gomarkdown/markdown"
"github.com/gomarkdown/markdown/ast"
"github.com/gomarkdown/markdown/html"
"github.com/gomarkdown/markdown/parser"
"fmt"
)
var mds = `# header
Sample text.
[link](http://example.com)
`
func mdToHTML(md []byte) []byte {
// create markdown parser with extensions
extensions := parser.CommonExtensions | parser.AutoHeadingIDs | parser.NoEmptyLineBeforeBlock
p := parser.NewWithExtensions(extensions)
doc := p.Parse(md)
// create HTML renderer with extensions
htmlFlags := html.CommonFlags | html.HrefTargetBlank
opts := html.RendererOptions{Flags: htmlFlags}
renderer := html.NewRenderer(opts)
return markdown.Render(doc, renderer)
}
func main() {
md := []byte(mds)
html := mdToHTML(md)
fmt.Printf("--- Markdown:\n%s\n\n--- HTML:\n%s\n", md, html)
}
Try it online: https://onlinetool.io/goplayground/#txO7hJ-ibeU
For more documentation read this guide
Comparing to other markdown parsers: https://babelmark.github.io/
Sanitize untrusted content
We don't protect against malicious content. When dealing with user-provided markdown, run renderer HTML through HTML sanitizer such as Bluemonday.
Here's an example of simple usage with Bluemonday:
import (
"github.com/microcosm-cc/bluemonday"
"github.com/gomarkdown/markdown"
)
// ...
maybeUnsafeHTML := markdown.ToHTML(md, nil, nil)
html := bluemonday.UGCPolicy().SanitizeBytes(maybeUnsafeHTML)
mdtohtml command-line tool
https://github.com/gomarkdown/mdtohtml is a command-line markdown to html converter built using this library.
You can also use it as an example of how to use the library.
You can install it with:
go get -u github.com/gomarkdown/mdtohtml
To run: mdtohtml input-file [output-file]
Features
-
Compatibility. The Markdown v1.0.3 test suite passes with the
--tidy
option. Without--tidy
, the differences are mostly in whitespace and entity escaping, where this package is more consistent and cleaner. -
Common extensions, including table support, fenced code blocks, autolinks, strikethroughs, non-strict emphasis, etc.
-
Safety. Markdown is paranoid when parsing, making it safe to feed untrusted user input without fear of bad things happening. The test suite stress tests this and there are no known inputs that make it crash. If you find one, please let me know and send me the input that does it.
NOTE: "safety" in this context means runtime safety only. In order to protect yourself against JavaScript injection in untrusted content, see this example.
-
Fast. It is fast enough to render on-demand in most web applications without having to cache the output.
-
Thread safety. You can run multiple parsers in different goroutines without ill effect. There is no dependence on global shared state.
-
Minimal dependencies. Only depends on standard library packages in Go.
-
Standards compliant. Output successfully validates using the W3C validation tool for HTML 4.01 and XHTML 1.0 Transitional.
Extensions
In addition to the standard markdown syntax, this package implements the following extensions:
-
Intra-word emphasis supression. The
_
character is commonly used inside words when discussing code, so having markdown interpret it as an emphasis command is usually the wrong thing. We let you treat all emphasis markers as normal characters when they occur inside a word. -
Tables. Tables can be created by drawing them in the input using a simple syntax:
Name | Age --------|------ Bob | 27 Alice | 23
Table footers are supported as well and can be added with equal signs (
=
):Name | Age --------|------ Bob | 27 Alice | 23 ========|====== Total | 50
A cell spanning multiple columns (colspan) is supported, just repeat the pipe symbol:
Name | Age --------|------ Bob || Alice | 23 ========|====== Total | 23
-
Fenced code blocks. In addition to the normal 4-space indentation to mark code blocks, you can explicitly mark them and supply a language (to make syntax highlighting simple). Just mark it like this:
```go func getTrue() bool { return true } ```
You can use 3 or more backticks to mark the beginning of the block, and the same number to mark the end of the block.
-
Definition lists. A simple definition list is made of a single-line term followed by a colon and the definition for that term.
Cat : Fluffy animal everyone likes Internet : Vector of transmission for pictures of cats
Terms must be separated from the previous definition by a blank line.
-
Footnotes. A marker in the text that will become a superscript number; a footnote definition that will be placed in a list of footnotes at the end of the document. A footnote looks like this:
This is a footnote.[^1] [^1]: the footnote text.
-
Autolinking. We can find URLs that have not been explicitly marked as links and turn them into links.
-
Strikethrough. Use two tildes (
~~
) to mark text that should be crossed out. -
Hard line breaks. With this extension enabled newlines in the input translates into line breaks in the output. This extension is off by default.
-
Non blocking space. With this extension enabled spaces preceded by a backslash in the input translates non-blocking spaces in the output. This extension is off by default.
-
Smart quotes. Smartypants-style punctuation substitution is supported, turning normal double- and single-quote marks into curly quotes, etc.
-
LaTeX-style dash parsing is an additional option, where
--
is translated into–
, and---
is translated into—
. This differs from most smartypants processors, which turn a single hyphen into an ndash and a double hyphen into an mdash. -
Smart fractions, where anything that looks like a fraction is translated into suitable HTML (instead of just a few special cases like most smartypant processors). For example,
4/5
becomes<sup>4</sup>⁄<sub>5</sub>
, which renders as 4⁄5. -
MathJaX Support is an additional feature which is supported by many markdown editor. It translates inline math equations quoted by
$
and displays math blocks quoted by$$
into MathJax compatible format. Hyphens (_
) won't break LaTeX render within a math element any more.$$ \left[ \begin{array}{a} a^l_1 \\ ⮠\\ a^l_{d_l} \end{array}\right] = \sigma( \left[ \begin{matrix} w^l_{1,1} & ⯠& w^l_{1,d_{l-1}} \\ ⮠& Ⱡ& ⮠\\ w^l_{d_l,1} & ⯠& w^l_{d_l,d_{l-1}} \\ \end{matrix}\right] · \left[ \begin{array}{x} a^{l-1}_1 \\ ⮠\\ ⮠\\ a^{l-1}_{d_{l-1}} \end{array}\right] + \left[ \begin{array}{b} b^l_1 \\ ⮠\\ b^l_{d_l} \end{array}\right]) $$
-
Ordered list start number. With this extension enabled an ordered list will start with the number that was used to start it.
-
Super and subscript. With this extension enabled sequences between ^ will indicate superscript and ~ will become a subscript. For example: H
2O is a liquid, 2^10^ is 1024. -
Block level attributes allow setting attributes (ID, classes and key/value pairs) on block level elements. The attribute must be enclosed with braces and be put on a line before the element.
{#id3 .myclass fontsize="tiny"} # Header 1
Will convert into
<h1 id="id3" class="myclass" fontsize="tiny">Header 1</h1>
. -
Mmark support, see https://mmark.miek.nl/post/syntax/ for all new syntax elements this adds.
Users
Some tools using this package: https://pkg.go.dev/github.com/gomarkdown/markdown?tab=importedby
History
markdown is a fork of v2 of https://github.com/russross/blackfriday.
I refactored the API (split into ast/parser/html sub-packages).
Blackfriday itself was based on C implementation sundown which in turn was based on libsoldout.
License
Top Related Projects
Blackfriday: a markdown processor for Go
:trophy: A markdown parser written in Go. Easy to extend, standard(CommonMark) compliant, well structured.
CommonMark parsing and rendering library and program in C
A bidirectional Markdown to HTML to Markdown converter written in Javascript
A markdown parser and compiler. Built for speed.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot