Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions html.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ type Html struct {
title string // document title
css string // optional css file url (used with HTML_COMPLETE_PAGE)

// The optional 'meta' map holds additional meta tags to
// place into the final document's header.
// Format:
// key: name="author"
// val: foo barrington
meta map[string]string

parameters HtmlRendererParameters

// table of contents data
Expand Down Expand Up @@ -131,6 +138,8 @@ func HtmlRendererWithParameters(flags int, title string,
css: css,
parameters: renderParameters,

meta: make(map[string]string),

headerCount: 0,
currentLevel: 0,
toc: new(bytes.Buffer),
Expand Down Expand Up @@ -685,6 +694,14 @@ func (options *Html) DocumentHeader(out *bytes.Buffer) {
out.WriteString(" <meta charset=\"utf-8\"")
out.WriteString(ending)
out.WriteString(">\n")
// plug the user-specified <meta.../> tags
if len(options.meta) > 0 {
for k, v := range options.meta {
out.WriteString(" <meta " + k + " content=\"" + v + "\"")
out.WriteString(ending)
out.WriteString(">\n")
}
}
if options.css != "" {
out.WriteString(" <link rel=\"stylesheet\" type=\"text/css\" href=\"")
attrEscape(out, []byte(options.css))
Expand Down