Fix bug: no ")" on line 71

This commit is contained in:
李铁柱
2018-04-04 15:16:27 +08:00
committed by GitHub
parent 760bcda8f8
commit 8ba1885989

View File

@@ -68,7 +68,7 @@ func (self *Visitor) md2html(arg map[string]string) error {
opts.Smartypants = true opts.Smartypants = true
opts.Fractions = true opts.Fractions = true
// r1 := []rune(s1) // r1 := []rune(s1)
m := mark.New(input, opts m := mark.New(input, opts)
w := bufio.NewWriter(out) w := bufio.NewWriter(out)
n4, err := w.WriteString(s + m.Render()) n4, err := w.WriteString(s + m.Render())
fmt.Printf("wrote %d bytes\n", n4) fmt.Printf("wrote %d bytes\n", n4)