f63b76e169
Previously we used Setext (underlined) headings by default. The default is now ATX (`##` style). * Add the `--markdown-headings=atx|setext` option. * Deprecate `--atx-headers`. * Add constructor 'ATXHeadingInLHS` constructor to `LogMessage` [API change]. * Support `markdown-headings` in defaults files. * Document new options in MANUAL. Closes #6662.
12 lines
253 B
Markdown
12 lines
253 B
Markdown
```
|
|
% pandoc -f markdown -t markdown_strict
|
|
![My caption](./my-figure.jpg){width=500px}
|
|
|
|
## Header 2
|
|
^D
|
|
<figure>
|
|
<img src="./my-figure.jpg" width="500" alt="My caption" /><figcaption aria-hidden="true">My caption</figcaption>
|
|
</figure>
|
|
|
|
## Header 2
|
|
```
|