Skip to content

Commit 8ba1885

Browse files
authored
Fix bug: no ")" on line 71
1 parent 760bcda commit 8ba1885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zh/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func (self *Visitor) md2html(arg map[string]string) error {
6868
opts.Smartypants = true
6969
opts.Fractions = true
7070
// r1 := []rune(s1)
71-
m := mark.New(input, opts
71+
m := mark.New(input, opts)
7272
w := bufio.NewWriter(out)
7373
n4, err := w.WriteString(s + m.Render())
7474
fmt.Printf("wrote %d bytes\n", n4)

0 commit comments

Comments
 (0)