d1444b4ecd
...by parsing them as Span with "role" attributes. This way they can be manipulated in the AST. Closes #3407.
13 lines
203 B
Markdown
13 lines
203 B
Markdown
```
|
|
% pandoc -f native -t rst
|
|
[Para [Span ("",[],[("role","foo")]) [Str "text"]]]
|
|
^D
|
|
:foo:`text`
|
|
```
|
|
|
|
```
|
|
% pandoc -f rst -t native
|
|
:foo:`text`
|
|
^D
|
|
[Para [Span ("",[],[("role","foo")]) [Str "text"]]]
|
|
```
|