This commit is contained in:
Alex Yatskov 2015-08-19 18:54:33 +09:00
parent ac70933987
commit 9fc45c4c39

View File

@ -234,8 +234,7 @@ func (v *vimDoc) Header(out *bytes.Buffer, text func() bool, level int, id strin
v.headings = append(v.headings, h) v.headings = append(v.headings, h)
tag := fmt.Sprintf("*%s*", v.buildHelpTag(h.text)) tag := fmt.Sprintf("*%s*", v.buildHelpTag(h.text))
title := fmt.Sprintf("%s", bytes.ToUpper(h.text)) v.writeSplitText(out, bytes.ToUpper(h.text), []byte(tag), " ", 2)
v.writeSplitText(out, []byte(title), []byte(tag), " ", 2)
out.WriteString("\n") out.WriteString("\n")
} }
@ -397,7 +396,9 @@ func (v *vimDoc) DocumentFooter(out *bytes.Buffer) {
temp.Write(out.Bytes()[:v.tocPos]) temp.Write(out.Bytes()[:v.tocPos])
v.writeRule(&temp, "=") v.writeRule(&temp, "=")
temp.WriteString("CONTENTS\n") title := []byte("contents")
tag := fmt.Sprintf("*%s*", v.buildHelpTag(title))
v.writeSplitText(&temp, bytes.ToUpper(title), []byte(tag), " ", 2)
temp.WriteString("\n") temp.WriteString("\n")
v.writeToc(&temp) v.writeToc(&temp)
temp.WriteString("\n") temp.WriteString("\n")