Add support for NAME keyword
This commit is contained in:
parent
2afd11581c
commit
20970ec872
8 changed files with 63 additions and 3 deletions
|
@ -397,6 +397,10 @@ func (w *HTMLWriter) WriteNodeWithMeta(n NodeWithMeta) {
|
|||
w.WriteString(out)
|
||||
}
|
||||
|
||||
func (w *HTMLWriter) WriteNodeWithName(n NodeWithName) {
|
||||
WriteNodes(w, n.Node)
|
||||
}
|
||||
|
||||
func (w *HTMLWriter) WriteTable(t Table) {
|
||||
w.WriteString("<table>\n")
|
||||
beforeFirstContentRow := true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue