| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- # Block spans
- this is a paragraph.
- this is a long paragraph with *italics* and **bold** items.
- this is a long paragraph where *an italicized section ends with a space *.
- this is a *long paragraph that spans
- two* lines.
- this is a paragraph with *a span that is very very very very very very very very
- very very very very very very very very very very very very very very very very
- very very very very very very very* long.
- this is a paragraph where _italics_ and __bold__ are set with underscores.
- ***this*** is a paragraph with ***strongly emphasized*** words, such as this
- ___one___.
- # italics *in* titles
- yes, we can.
- # bold **in** titles
- inline `code` in this paragraph. this is a ``test for this`` stuff.
- superscripts ^are\ kinda^ cool (2^12^). subscripts can ~also~ be ~kinda\ lame~
- (like drinking H~2~O). there's also sections with ~~striked out~~ text.
- this ~= could be a problem if we allowed unscaped spaces.
- a new line can be outputted for lines with a couple
- of spaces.
- # mix and match
- oh no! mix and match *is **hard** stuff*, real hard.
- mixing is **quite *the* problem**.
- but... we ***kinda tackled it*** ;)
- We once had problems with ***quite* the problem**, but not anymore.
- # blockquotes
- > this is a test block
- > this is another *test*. block
- a block
- > less block
- aaa block
- no block.
- # code blocks
- def func(a):
- return 1
- no code
- ~~~python
- def func(a):
- return 1
- ~~~
- ~~~ {.python}
- print("hi")
- ~~~
- test
- ~~~haskell
- test
- ~~~
- ```vim
- :exe "cmd args"
- ```
- > ``` c
- > void (*signal(int sig, void (*disp)(int)))(int);
- > ```
- >
- > If `signal()` is used, `disp` is the address of a signal handler, and `sig`
- > is not `SIGILL`, `SIGTRAP`, or `SIGPWR`, the system first sets the signal's
- > disposition to `SIG_DFL` before executing the signal handler.
- # definitions
- hello
- : this is a definition.
- `hello`
- : this is a definition
- # lists
- * this
- * this
- * and this
- + and this
- 1) a
- 2) b
- # smart punctuation
- ellipses: ....
- quote "signs". This only works at the beggining and end of words.
- quote "signs."
- issue #31:
- "Foo"
- *"Foo"*
- **"Foo"**
|