1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
Test inline Elements
===
Emphasis
---
This one is *emphasized* with `*`. This one is __strongly emphasized__ with `__`.
This one has its delimiter *e\*s\*c\*a\*p\*e\*d* as content. This is a free *
asterisk and a free _ underscore. This is a **strong one**.
Links
---
Use [Google][] and [Yahoo] [] for search and read [News for Nerds][Slashdot] and
[Hacker News] [HN]. Watch videos at [Youtube](http://www.youtube.com "Youtube").
[News for Nerds][Slashdot].
[Google]: http://www.google.de
"Google Homepage"
[Yahoo]: http://www.yahoo.com
[Slashdot]: <http://slashdot.org> (News for Nerds)
[HN]: http://news.ycombinator.com 'Hacker News'
Unknown ref: [bla][foo]
Code
---
An XML declaration looks like this: `<?xml version="1.0" encoding="utf-8"?>`.
The `printf()` function is used for printing to the screen. Show a single
`` ` ``.
Images
---
Here comes an inline graphic . Here comes a reference ![Ref Image][SomeImage].
[SomeImage]: /path/to/some.png "Ref image title"
Entities
---
Here is a copyright symbol: ©. AT&T operator talk. 4 < 5 or 5 > 4.
Automatic Links
---
Write to <me@example.com> and visit <http://www.example.com>.
This is an auto-link with ampersand: <http://example.com/?foo=1&bar=2>.
Inline HTML
---
Here is some text <b>in bold</b>. An image tag <img src="nonexist.jpg" alt="no
such file"/>. And here comes a table:
<table style="border: 1px solid black; border-collapse: collapse">
<tr>
<td style="border-right: 1px solid red;"><b>Column A</b></td><td><b>Column B</b></td>
</tr>
</table>
Here comes some text. Here comes some text. Here comes some text. Here
comes some text. Here comes some text. Here comes some text. Here comes
some text.
Here is an inline email link with mailto: <mailto:max@example.com>. And
here is an inline email link without mailto: <max@example.com>. This is
not a valid email link <something@> neither is this <@example.com>.
|