summaryrefslogtreecommitdiff
path: root/examples/markdown.md
diff options
context:
space:
mode:
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;
}
```