forked from OhYee/goldmark-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
37 lines (32 loc) · 819 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package main
import (
"bytes"
"io/ioutil"
"path"
"runtime"
uml "github.com/iessa-pragg-ctct/goldmark-plantuml"
"github.com/yuin/goldmark"
"github.com/yuin/goldmark/extension"
"github.com/yuin/goldmark/parser"
)
var raw = "```go\npackage main\n\nimport ()\nfunc main(){}\n```\n\n```plantuml\n@startuml\nAlice -> Bob: test\n@enduml\n```"
func main() {
md := goldmark.New(
goldmark.WithExtensions(
extension.GFM,
uml.Default,
),
goldmark.WithParserOptions(
parser.WithAutoHeadingID(),
),
goldmark.WithRendererOptions(),
)
buf := bytes.Buffer{}
if err := md.Convert([]byte(raw), &buf); err != nil {
panic(err.Error())
}
_, file, _, _ := runtime.Caller(0)
if err := ioutil.WriteFile(path.Join(path.Dir(file), "output.html"), buf.Bytes(), 777); err != nil {
panic(err.Error())
}
}