HTMLRenderer is a type that implements the Renderer interface for HTML output. Do not create this directly, instead use the NewHTMLRenderer function.
| 104 | // |
| 105 | // Do not create this directly, instead use the NewHTMLRenderer function. |
| 106 | type HTMLRenderer struct { |
| 107 | HTMLRendererParameters |
| 108 | |
| 109 | closeTag string // how to end singleton tags: either " />" or ">" |
| 110 | |
| 111 | // Track heading IDs to prevent ID collision in a single generation. |
| 112 | headingIDs map[string]int |
| 113 | |
| 114 | lastOutputLen int |
| 115 | disableTags int |
| 116 | |
| 117 | sr *SPRenderer |
| 118 | } |
| 119 | |
| 120 | const ( |
| 121 | xhtmlClose = " />" |
nothing calls this directly
no outgoing calls
no test coverage detected