summaryrefslogtreecommitdiff
path: root/examples/markdown.md
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-11-06 20:09:07 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-11-06 20:09:07 +0300
commitc6419eed96f2832b1de2b94d711552efaa9b172d (patch)
tree999d0d08a0fe902be7b07c599c15714e00380656 /examples/markdown.md
parent73345c7dc06a6488f34d4a76906a62171a519278 (diff)
downloadtexo-c6419eed96f2832b1de2b94d711552efaa9b172d.tar
texo-c6419eed96f2832b1de2b94d711552efaa9b172d.tar.xz
texo-c6419eed96f2832b1de2b94d711552efaa9b172d.zip
[texo] Prettier print (+ fixes).
Diffstat (limited to 'examples/markdown.md')
-rw-r--r--examples/markdown.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/examples/markdown.md b/examples/markdown.md
index 341acb2..2d86e81 100644
--- a/examples/markdown.md
+++ b/examples/markdown.md
@@ -7,6 +7,16 @@ blah-blah-blah...
New paragraph. *Italic*. **Bold**. _alternative_ __style__.
++Underlined++. ~~Striked~~. `Mono`.
+What about __*strange*__?
+__*Even* stranger__?
+_**Apocalyptically** strange_?
+*__Different__ order*?
+
+(Note: \*\*\* means bold and italic. In that exact order.
+So closing in any over will produce incorrect HTML.
+To make things even worse, no error will be produced.
+Unclosed modificators are similar.)
+
----
This was horizontal rule.
@@ -17,7 +27,7 @@ This was horizontal rule.
```
bool Block::is\_code()
{
- **return** this->should\_be();
+ **return** this->should\_be() + 1;
}
```