Latex parses, formats and renders LaTeX.
| 22 | |
| 23 | // Latex parses, formats and renders LaTeX. |
| 24 | type Latex struct { |
| 25 | // Fonts is the cache of font faces used by this text handler. |
| 26 | Fonts *font.Cache |
| 27 | |
| 28 | // DPI is the dot-per-inch controlling the font resolution used by LaTeX. |
| 29 | // If zero, the resolution defaults to 72. |
| 30 | DPI float64 |
| 31 | } |
| 32 | |
| 33 | var _ Handler = (*Latex)(nil) |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected