blob: 1e2771ae679c8331aec4525ae311b3861679aeb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# A number of todos (unsorted and incomplete)
## Code extensions / cleanup
### theorem-like envs
- this can currently only handle the simple version from LaTeX2e
- it is missing a proper set of templates
- it is missing extensions to support different styles (a la amsmath and the like)
## Missing basic support
- `\textbf` should probably mapt to `<Strong>`
- `\emph` should probably map to `<Em>`
- Logos such as `\TeX` and `\LaTeX` should produce proper ActualText
## Package Support
### csquotes
- we can't really grab TeX's basic quotes, e.g.
```
some quotes around ``text'' here
```
at least not easily, but we can support `\enquote` and the like
|