2b34337a9c
Documented in MANUAL.txt. This is enabled by default in pandoc markdown and multimarkdown.
28 lines
351 B
Markdown
28 lines
351 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"]
|
|
````
|