markdown test
This commit is contained in:
parent
fe1994fcde
commit
291c1315ef
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
test.html
|
18
.gitmodules
vendored
Normal file
18
.gitmodules
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
[submodule "vendor/gopkg.in/russross/blackfriday.v2"]
|
||||
path = vendor/gopkg.in/russross/blackfriday.v2
|
||||
url = https://gopkg.in/russross/blackfriday.v2
|
||||
[submodule "vendor/github.com/shurcooL/sanitized_anchor_name"]
|
||||
path = vendor/github.com/shurcooL/sanitized_anchor_name
|
||||
url = https://github.com/shurcooL/sanitized_anchor_name
|
||||
[submodule "vendor/github.com/Depado/bfchroma"]
|
||||
path = vendor/github.com/Depado/bfchroma
|
||||
url = https://github.com/Depado/bfchroma
|
||||
[submodule "vendor/github.com/alecthomas/chroma"]
|
||||
path = vendor/github.com/alecthomas/chroma
|
||||
url = https://github.com/alecthomas/chroma
|
||||
[submodule "vendor/github.com/dlclark/regexp2"]
|
||||
path = vendor/github.com/dlclark/regexp2
|
||||
url = https://github.com/dlclark/regexp2
|
||||
[submodule "vendor/github.com/danwakefield/fnmatch"]
|
||||
path = vendor/github.com/danwakefield/fnmatch
|
||||
url = https://github.com/danwakefield/fnmatch
|
19
main.go
Normal file
19
main.go
Normal file
@ -0,0 +1,19 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
|
||||
"github.com/Depado/bfchroma"
|
||||
|
||||
"gopkg.in/russross/blackfriday.v2"
|
||||
)
|
||||
|
||||
func main() {
|
||||
input, err := ioutil.ReadFile("README.md")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
html := blackfriday.Run(input, blackfriday.WithRenderer(bfchroma.NewRenderer()))
|
||||
fmt.Println(string(html))
|
||||
}
|
1
vendor/github.com/Depado/bfchroma
generated
vendored
Submodule
1
vendor/github.com/Depado/bfchroma
generated
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit ab17b511206de6d3592668ad718840a1e8f8283a
|
1
vendor/github.com/alecthomas/chroma
generated
vendored
Submodule
1
vendor/github.com/alecthomas/chroma
generated
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit b5ccb8dc322b914484924caf4463d601a64382f7
|
1
vendor/github.com/danwakefield/fnmatch
generated
vendored
Submodule
1
vendor/github.com/danwakefield/fnmatch
generated
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit cbb64ac3d964b81592e64f957ad53df015803288
|
1
vendor/github.com/dlclark/regexp2
generated
vendored
Submodule
1
vendor/github.com/dlclark/regexp2
generated
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 7632a260cbaf5e7594fc1544a503456ecd0827f1
|
1
vendor/github.com/shurcooL/sanitized_anchor_name
generated
vendored
Submodule
1
vendor/github.com/shurcooL/sanitized_anchor_name
generated
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615
|
1
vendor/gopkg.in/russross/blackfriday.v2
generated
vendored
Submodule
1
vendor/gopkg.in/russross/blackfriday.v2
generated
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit d3b5b032dc8e8927d31a5071b56e14c89f045135
|
Loading…
Reference in New Issue
Block a user