mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 06:05:45 +00:00
35 lines
385 B
Markdown
35 lines
385 B
Markdown
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" ]
|
|
````
|