Elem defines the interface for a present element. That is, something that can provide the name of the template used to render the element.
| 161 | // Elem defines the interface for a present element. That is, something that |
| 162 | // can provide the name of the template used to render the element. |
| 163 | type Elem interface { |
| 164 | TemplateName() string |
| 165 | } |
| 166 | |
| 167 | // renderElem implements the elem template function, used to render |
| 168 | // sub-templates. |
no outgoing calls
no test coverage detected
searching dependent graphs…