mirror of
https://github.com/yuin/goldmark
synced 2025-03-04 23:04:52 +00:00
Update README.md
This commit is contained in:
parent
94947895e7
commit
533a448c5f
1 changed files with 7 additions and 7 deletions
14
README.md
14
README.md
|
|
@ -128,13 +128,13 @@ if err := md.Convert(source, &buf); err != nil {
|
|||
}
|
||||
```
|
||||
|
||||
| Functional option | Type |
|
||||
| ----------------- | ---- |
|
||||
| `goldmark.WithParser` | `parser.Parser` |
|
||||
| `goldmark.WithRenderer` | `renderer.Renderer` |
|
||||
| `goldmark.WithParserOptions` | `...parser.Option` |
|
||||
| `goldmark.WithRendererOptions` | `...renderer.Option` |
|
||||
| `goldmark.WithExtensions` | `...goldmark.Extender` |
|
||||
| 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
|
||||
------------------------------
|
||||
|
|
|
|||
Loading…
Reference in a new issue