pkgsrc/textproc/go-goldmark/PLIST
nikita 3972dc6e06 Add textproc/go-goldmark version 1.1.30
goldmark is a Markdown parser written in Go. It is compliant with
CommonMark 0.29. Its features include:

- 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-fuzz, a fuzz testing tool.
- Built-in extensions. goldmark ships with common extensions like
  tables, strikethrough, task lists, and definition lists.
- Depends only on standard libraries.
2020-04-25 23:49:20 +00:00

95 lines
5.3 KiB
Text

@comment $NetBSD: PLIST,v 1.1 2020/04/25 23:49:20 nikita Exp $
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/ast.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/extension.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/extension/ast.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/fuzz.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/parser.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/renderer.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/renderer/html.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/testutil.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/text.a
gopkg/pkg/${GO_PLATFORM}/github.com/yuin/goldmark/util.a
gopkg/src/github.com/yuin/goldmark/LICENSE
gopkg/src/github.com/yuin/goldmark/Makefile
gopkg/src/github.com/yuin/goldmark/README.md
gopkg/src/github.com/yuin/goldmark/_benchmark/cmark/.gitignore
gopkg/src/github.com/yuin/goldmark/_benchmark/cmark/Makefile
gopkg/src/github.com/yuin/goldmark/_benchmark/cmark/_data.md
gopkg/src/github.com/yuin/goldmark/_benchmark/cmark/cmark_benchmark.c
gopkg/src/github.com/yuin/goldmark/_benchmark/cmark/goldmark_benchmark.go
gopkg/src/github.com/yuin/goldmark/_benchmark/go/_data.md
gopkg/src/github.com/yuin/goldmark/_benchmark/go/benchmark_test.go
gopkg/src/github.com/yuin/goldmark/_test/extra.txt
gopkg/src/github.com/yuin/goldmark/_test/options.txt
gopkg/src/github.com/yuin/goldmark/_test/spec.json
gopkg/src/github.com/yuin/goldmark/_tools/gen-unicode-case-folding-map.go
gopkg/src/github.com/yuin/goldmark/ast/ast.go
gopkg/src/github.com/yuin/goldmark/ast/ast_test.go
gopkg/src/github.com/yuin/goldmark/ast/block.go
gopkg/src/github.com/yuin/goldmark/ast/inline.go
gopkg/src/github.com/yuin/goldmark/commonmark_test.go
gopkg/src/github.com/yuin/goldmark/extension/_test/definition_list.txt
gopkg/src/github.com/yuin/goldmark/extension/_test/footnote.txt
gopkg/src/github.com/yuin/goldmark/extension/_test/linkify.txt
gopkg/src/github.com/yuin/goldmark/extension/_test/strikethrough.txt
gopkg/src/github.com/yuin/goldmark/extension/_test/table.txt
gopkg/src/github.com/yuin/goldmark/extension/_test/tasklist.txt
gopkg/src/github.com/yuin/goldmark/extension/_test/typographer.txt
gopkg/src/github.com/yuin/goldmark/extension/ast/definition_list.go
gopkg/src/github.com/yuin/goldmark/extension/ast/footnote.go
gopkg/src/github.com/yuin/goldmark/extension/ast/strikethrough.go
gopkg/src/github.com/yuin/goldmark/extension/ast/table.go
gopkg/src/github.com/yuin/goldmark/extension/ast/tasklist.go
gopkg/src/github.com/yuin/goldmark/extension/definition_list.go
gopkg/src/github.com/yuin/goldmark/extension/definition_list_test.go
gopkg/src/github.com/yuin/goldmark/extension/footnote.go
gopkg/src/github.com/yuin/goldmark/extension/footnote_test.go
gopkg/src/github.com/yuin/goldmark/extension/gfm.go
gopkg/src/github.com/yuin/goldmark/extension/linkify.go
gopkg/src/github.com/yuin/goldmark/extension/linkify_test.go
gopkg/src/github.com/yuin/goldmark/extension/strikethrough.go
gopkg/src/github.com/yuin/goldmark/extension/strikethrough_test.go
gopkg/src/github.com/yuin/goldmark/extension/table.go
gopkg/src/github.com/yuin/goldmark/extension/table_test.go
gopkg/src/github.com/yuin/goldmark/extension/tasklist.go
gopkg/src/github.com/yuin/goldmark/extension/tasklist_test.go
gopkg/src/github.com/yuin/goldmark/extension/typographer.go
gopkg/src/github.com/yuin/goldmark/extension/typographer_test.go
gopkg/src/github.com/yuin/goldmark/extra_test.go
gopkg/src/github.com/yuin/goldmark/fuzz/fuzz.go
gopkg/src/github.com/yuin/goldmark/fuzz/fuzz_test.go
gopkg/src/github.com/yuin/goldmark/go.mod
gopkg/src/github.com/yuin/goldmark/go.sum
gopkg/src/github.com/yuin/goldmark/markdown.go
gopkg/src/github.com/yuin/goldmark/options_test.go
gopkg/src/github.com/yuin/goldmark/parser/attribute.go
gopkg/src/github.com/yuin/goldmark/parser/atx_heading.go
gopkg/src/github.com/yuin/goldmark/parser/auto_link.go
gopkg/src/github.com/yuin/goldmark/parser/blockquote.go
gopkg/src/github.com/yuin/goldmark/parser/code_block.go
gopkg/src/github.com/yuin/goldmark/parser/code_span.go
gopkg/src/github.com/yuin/goldmark/parser/delimiter.go
gopkg/src/github.com/yuin/goldmark/parser/emphasis.go
gopkg/src/github.com/yuin/goldmark/parser/fcode_block.go
gopkg/src/github.com/yuin/goldmark/parser/html_block.go
gopkg/src/github.com/yuin/goldmark/parser/link.go
gopkg/src/github.com/yuin/goldmark/parser/link_ref.go
gopkg/src/github.com/yuin/goldmark/parser/list.go
gopkg/src/github.com/yuin/goldmark/parser/list_item.go
gopkg/src/github.com/yuin/goldmark/parser/paragraph.go
gopkg/src/github.com/yuin/goldmark/parser/parser.go
gopkg/src/github.com/yuin/goldmark/parser/raw_html.go
gopkg/src/github.com/yuin/goldmark/parser/setext_headings.go
gopkg/src/github.com/yuin/goldmark/parser/thematic_break.go
gopkg/src/github.com/yuin/goldmark/renderer/html/html.go
gopkg/src/github.com/yuin/goldmark/renderer/renderer.go
gopkg/src/github.com/yuin/goldmark/testutil/testutil.go
gopkg/src/github.com/yuin/goldmark/testutil/testutil_test.go
gopkg/src/github.com/yuin/goldmark/text/reader.go
gopkg/src/github.com/yuin/goldmark/text/segment.go
gopkg/src/github.com/yuin/goldmark/util/html5entities.go
gopkg/src/github.com/yuin/goldmark/util/unicode_case_folding.go
gopkg/src/github.com/yuin/goldmark/util/util.go
gopkg/src/github.com/yuin/goldmark/util/util_safe.go
gopkg/src/github.com/yuin/goldmark/util/util_unsafe.go