HTMLRender interface is to be implemented by HTMLProduction and HTMLDebug.
| 21 | |
| 22 | // HTMLRender interface is to be implemented by HTMLProduction and HTMLDebug. |
| 23 | type HTMLRender interface { |
| 24 | // Instance returns an HTML instance. |
| 25 | Instance(string, any) Render |
| 26 | } |
| 27 | |
| 28 | // HTMLProduction contains template reference and its delims. |
| 29 | type HTMLProduction struct { |