Commit e5b5d27d authored by Elan Ruusamäe's avatar Elan Ruusamäe Committed by Elan Ruusamäe

plantuml.md: use html tags so code fence example would work

parent 5b880f0d
...@@ -58,30 +58,32 @@ our AsciiDoc snippets, wikis and repos using delimited blocks: ...@@ -58,30 +58,32 @@ our AsciiDoc snippets, wikis and repos using delimited blocks:
- **Markdown** - **Markdown**
```plantuml <pre>
Bob -> Alice : hello ```plantuml
Alice -> Bob : Go Away Bob -> Alice : hello
``` Alice -> Bob : Go Away
```
</pre>
- **AsciiDoc** - **AsciiDoc**
``` <pre>
[plantuml, format="png", id="myDiagram", width="200px"] [plantuml, format="png", id="myDiagram", width="200px"]
-- --
Bob->Alice : hello Bob->Alice : hello
Alice -> Bob : Go Away Alice -> Bob : Go Away
-- --
``` </pre>
- **reStructuredText** - **reStructuredText**
``` <pre>
.. plantuml:: .. plantuml::
:caption: Caption with **bold** and *italic* :caption: Caption with **bold** and *italic*
Bob -> Alice: hello Bob -> Alice: hello
Alice -> Bob: Go Away Alice -> Bob: Go Away
``` </pre>
You can also use the `uml::` directive for compatibility with [sphinxcontrib-plantuml](https://pypi.python.org/pypi/sphinxcontrib-plantuml), but please note that we currently only support the `caption` option. You can also use the `uml::` directive for compatibility with [sphinxcontrib-plantuml](https://pypi.python.org/pypi/sphinxcontrib-plantuml), but please note that we currently only support the `caption` option.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment