mirror of
https://github.com/yuin/goldmark
synced 2025-03-04 23:04:52 +00:00
Update README
This commit is contained in:
parent
dd89404e04
commit
8fad913d1d
2 changed files with 20 additions and 0 deletions
17
.travis.yml
Normal file
17
.travis.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
language: go
|
||||||
|
|
||||||
|
go:
|
||||||
|
- "1.11.x"
|
||||||
|
- "1.12.x"
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
GO111MODULE=off
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- go get github.com/axw/gocov/gocov
|
||||||
|
- go get github.com/mattn/goveralls
|
||||||
|
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
|
||||||
|
install:
|
||||||
|
- go get -u -v $(go list -f '{{join .Imports "\n"}}{{"\n"}}{{join .TestImports "\n"}}' ./... | sort | uniq | grep '\.' | grep -v goldmark)
|
||||||
|
script:
|
||||||
|
- $HOME/gopath/bin/goveralls -service=travis-ci
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
goldmark
|
goldmark
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
> A markdown parser written in Go. Easy to extend, standard compliant, well structured.
|
> A markdown parser written in Go. Easy to extend, standard compliant, well structured.
|
||||||
|
|
||||||
goldmark is compliant to CommonMark 0.29.
|
goldmark is compliant to CommonMark 0.29.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue