You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
👌 IMPROVE: Add parsed_directive and parsed_role parent tokens (#34)
In order to not lose the information, of what nodes were generated from directives/roles,
these nodes are now wrapped inside `parsed_directive` and `parsed_role` parent tokens,
e.g.
```xml
<admonition class="note" ...>
...
```
will now be output as:
```xml
<parsed_directive name="note" ...>
<admonition class="note" ...>
...
```
Additionally, `legend` tokens for paragraphs have been added,
after `caption` in figure directives.
0 commit comments