Merge pull request #10 from mironovalexey/patch-2

Update README.md
This commit is contained in:
Yusuke Inuzuka 2019-05-19 14:50:01 +09:00 committed by GitHub
commit 9b1570bcde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,8 +50,24 @@ Features
task lists, and definition lists. task lists, and definition lists.
- **Depends only on standard libraries.** - **Depends only on standard libraries.**
Installation
----------------------
```bash
$ go get github.com/yuin/goldmark
```
Usage Usage
---------------------- ----------------------
Import packages:
```
import (
"bytes"
"github.com/yuin/goldmark"
)
```
Convert Markdown documents with the CommonMark compliant mode: Convert Markdown documents with the CommonMark compliant mode:
@ -62,9 +78,17 @@ if err := goldmark.Convert(source, &buf); err != nil {
} }
``` ```
Customize a parser and a renderer: Custom parser and renderer
--------------------------
```go ```go
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( md := goldmark.New(
goldmark.WithExtensions(extension.GFM), goldmark.WithExtensions(extension.GFM),
goldmark.WithParserOptions( goldmark.WithParserOptions(