pandoc/test/command/3537.md

35 lines
385 B
Markdown
Raw Normal View History

Generalized raw attributes.
````
% pandoc -t native
```{=ms}
.MACRO
foo bar
```
^D
[ RawBlock (Format "ms") ".MACRO\nfoo bar" ]
````
````
% pandoc -t native
Hi `there`{=ms}.
^D
[ Para
[ Str "Hi"
, Space
, RawInline (Format "ms") "there"
, Str "."
]
]
````
````
% pandoc -t native
~~~ {=ms}
.MACRO
foo bar
~~~
^D
[ RawBlock (Format "ms") ".MACRO\nfoo bar" ]
````