[DRE-commits] [ruby-org] 182/303: Add more complex tests for emphasis markup

Jérémy Bobbio lunar at alioth.debian.org
Fri Aug 9 17:33:54 UTC 2013


This is an automated email from the git hooks/post-receive script.

lunar pushed a commit to branch master
in repository ruby-org.

commit b4add3f5d828cedd2989d396e4a405346f842e78
Author: Waldemar Quevedo <waldemar.quevedo at gmail.com>
Date:   Sun Sep 30 14:47:51 2012 +0900

    Add more complex tests for emphasis markup
---
 spec/html_examples/emphasis.html |  383 ++++++++++++++++++
 spec/html_examples/emphasis.org  |  804 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 1187 insertions(+)

diff --git a/spec/html_examples/emphasis.html b/spec/html_examples/emphasis.html
new file mode 100644
index 0000000..c11a7c3
--- /dev/null
+++ b/spec/html_examples/emphasis.html
@@ -0,0 +1,383 @@
+<h1 class="title">Inline Formatting test for emphasis</h1>
+<h2>Simple feature test</h2>
+<p><b>bold</b></p>
+<p><i>italic</i></p>
+<p><code>code</code></p>
+<p><code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span></p>
+<p><del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a></p>
+<p>http://www.gmail.com</p>
+<p><a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a></p>
+<h2>All together in one line</h2>
+<p><b>bold</b> /italic/ <code>code</code> ~verbatim~ <span style="text-decoration:underline;">underline</span>  <del>strikethrough</del> <a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.google.com">http://www.google.com</a> http://www.gmail.com <a href="http://www.xkcd.com">helpful text link</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://ww [...]
+<h2>Within code test</h2>
+<div class="highlight"><pre><span class="n">emphasis_tests</span> <span class="o">=</span> <span class="o">[</span>
+<span class="s2">"*bold*"</span><span class="p">,</span>
+<span class="s2">"/italic/"</span><span class="p">,</span>
+<span class="s2">"=code="</span><span class="p">,</span>
+<span class="s2">"~verbatim~"</span><span class="p">,</span>
+<span class="s2">"_underline_ "</span><span class="p">,</span>
+<span class="s2">"+strikethrough+"</span><span class="p">,</span>
+<span class="s2">"[[http://www.bing.com]]"</span><span class="p">,</span>
+<span class="s2">"[[http://www.google.com]]"</span><span class="p">,</span>
+<span class="s2">"[[http://www.xkcd.com][helpful text link]]"</span><span class="p">,</span>
+<span class="s2">"[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]"</span><span class="p">,</span>
+<span class="s2">"[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]"</span><span class="p">,</span>
+<span class="s2">"<http://www.google.com>"</span><span class="p">,</span>
+<span class="o">]</span>
+
+<span class="n">all</span> <span class="o">=</span> <span class="n">emphasis_tests</span><span class="o">.</span><span class="n">map</span> <span class="k">do</span> <span class="o">|</span><span class="n">a</span><span class="o">|</span>
+  <span class="n">emphasis_tests</span><span class="o">.</span><span class="n">map</span> <span class="k">do</span> <span class="o">|</span><span class="n">b</span><span class="o">|</span>
+    <span class="o">[</span><span class="n">b</span><span class="p">,</span> <span class="s1">' '</span><span class="p">,</span> <span class="n">a</span><span class="p">,</span> <span class="s1">' '</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="s2">"</span><span class="se">\n\n</span><span class="s2">"</span><span class="o">].</span><span class="n">join</span><span class="p">(</span><span class="s1">''</span [...]
+  <span class="k">end</span>
+<span class="k">end</span>
+
+<span class="n">all</span><span class="o">.</span><span class="n">each</span> <span class="p">{</span><span class="o">|</span><span class="n">e</span><span class="o">|</span> <span class="nb">puts</span> <span class="n">e</span><span class="p">}</span>
+</pre>
+</div>
+<h2>Mixed together test</h2>
+<div class="highlight"><pre><span class="n">emphasis_tests</span> <span class="o">=</span> <span class="o">[</span><span class="s2">"*"</span><span class="p">,</span><span class="s2">"/"</span><span class="p">,</span><span class="s2">"="</span><span class="p">,</span><span class="s2">"~"</span><span class="p">,</span><span class="s2">"_"</span><span class="p">,</span><span class="s2">"+"</span><span class="o">]</span>
+
+<span class="n">all</span> <span class="o">=</span> <span class="n">emphasis_tests</span><span class="o">.</span><span class="n">map</span> <span class="k">do</span> <span class="o">|</span><span class="n">a</span><span class="o">|</span>
+  <span class="n">emphasis_tests</span><span class="o">.</span><span class="n">map</span> <span class="k">do</span> <span class="o">|</span><span class="n">b</span><span class="o">|</span>
+    <span class="o">[[</span><span class="n">a</span><span class="p">,</span> <span class="s1">'Answer: '</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="s1">'42'</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="s1">' '</span><span class="p">,</span><span class="n">a</span><span class="p">,</span> <span class="s2">"</span><span class="se">\n\n</span><span class="s2">&quot [...]
+     <span class="o">[</span><span class="n">a</span><span class="p">,</span> <span class="s1">'Answer: '</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="s1">'42'</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="s1">''</span><span class="p">,</span><span class="n">a</span><span class="p">,</span> <span class="s2">"</span><span class="se">\n\n</span><span class="s2">" [...]
+  <span class="k">end</span>
+<span class="k">end</span>
+
+<span class="n">all</span><span class="o">.</span><span class="n">each</span> <span class="p">{</span><span class="o">|</span><span class="n">e</span><span class="o">|</span> <span class="nb">puts</span> <span class="n">e</span><span class="p">}</span>
+</pre>
+</div>
+<p><b>Answer: *42</b> *</p>
+<p><b>Answer: *42*</b></p>
+<p>*Answer: <i>42</i> *</p>
+<p><b>Answer: /42/</b></p>
+<p>*Answer: <code>42</code> *</p>
+<p><b>Answer: =42=</b></p>
+<p>*Answer: <code>42</code> *</p>
+<p><b>Answer: ~42~</b></p>
+<p>*Answer: <span style="text-decoration:underline;">42</span> *</p>
+<p><b>Answer: _42_</b></p>
+<p>*Answer: <del>42</del> *</p>
+<p><b>Answer: +42+</b></p>
+<p>/Answer: <b>42</b> /</p>
+<p><i>Answer: *42*</i></p>
+<p><i>Answer: /42</i> /</p>
+<p><i>Answer: /42/</i></p>
+<p>/Answer: <code>42</code> /</p>
+<p><i>Answer: =42=</i></p>
+<p>/Answer: <code>42</code> /</p>
+<p><i>Answer: ~42~</i></p>
+<p>/Answer: <span style="text-decoration:underline;">42</span> /</p>
+<p><i>Answer: _42_</i></p>
+<p>/Answer: <del>42</del> /</p>
+<p><i>Answer: +42+</i></p>
+<p>=Answer: <b>42</b> =</p>
+<p><code>Answer: *42*</code></p>
+<p>=Answer: <i>42</i> =</p>
+<p><code>Answer: /42/</code></p>
+<p><code>Answer: =42</code> =</p>
+<p><code>Answer: =42=</code></p>
+<p>=Answer: <code>42</code> =</p>
+<p><code>Answer: ~42~</code></p>
+<p>=Answer: <span style="text-decoration:underline;">42</span> =</p>
+<p><code>Answer: _42_</code></p>
+<p>=Answer: <del>42</del> =</p>
+<p><code>Answer: +42+</code></p>
+<p>~Answer: <b>42</b> ~</p>
+<p><code>Answer: *42*</code></p>
+<p>~Answer: <i>42</i> ~</p>
+<p><code>Answer: /42/</code></p>
+<p>~Answer: <code>42</code> ~</p>
+<p><code>Answer: =42=</code></p>
+<p><code>Answer: ~42</code> ~</p>
+<p><code>Answer: ~42~</code></p>
+<p>~Answer: <span style="text-decoration:underline;">42</span> ~</p>
+<p><code>Answer: _42_</code></p>
+<p>~Answer: <del>42</del> ~</p>
+<p><code>Answer: +42+</code></p>
+<p>_Answer: <b>42</b> _</p>
+<p><span style="text-decoration:underline;">Answer: *42*</span></p>
+<p>_Answer: <i>42</i> _</p>
+<p><span style="text-decoration:underline;">Answer: /42/</span></p>
+<p>_Answer: <code>42</code> _</p>
+<p><span style="text-decoration:underline;">Answer: =42=</span></p>
+<p>_Answer: <code>42</code> _</p>
+<p><span style="text-decoration:underline;">Answer: ~42~</span></p>
+<p><span style="text-decoration:underline;">Answer: _42</span> _</p>
+<p><span style="text-decoration:underline;">Answer: _42_</span></p>
+<p>_Answer: <del>42</del> _</p>
+<p><span style="text-decoration:underline;">Answer: +42+</span></p>
+<p>+Answer: <b>42</b> +</p>
+<p><del>Answer: *42*</del></p>
+<p>+Answer: <i>42</i> +</p>
+<p><del>Answer: /42/</del></p>
+<p>+Answer: <code>42</code> +</p>
+<p><del>Answer: =42=</del></p>
+<p>+Answer: <code>42</code> +</p>
+<p><del>Answer: ~42~</del></p>
+<p>+Answer: <span style="text-decoration:underline;">42</span> +</p>
+<p><del>Answer: _42_</del></p>
+<p><del>Answer: +42</del> +</p>
+<p><del>Answer: +42+</del></p>
+<h2>Multiline support test :: one line</h2>
+<div class="highlight"><pre><span class="n">emphasis_tests</span> <span class="o">=</span> <span class="o">[</span><span class="s2">"*"</span><span class="p">,</span><span class="s2">"/"</span><span class="p">,</span><span class="s2">"="</span><span class="p">,</span><span class="s2">"~"</span><span class="p">,</span><span class="s2">"_"</span><span class="p">,</span><span class="s2">"+"</span><span class="o">]</span>
+
+<span class="n">all</span> <span class="o">=</span> <span class="n">emphasis_tests</span><span class="o">.</span><span class="n">map</span> <span class="k">do</span> <span class="o">|</span><span class="n">a</span><span class="o">|</span>
+  <span class="n">emphasis_tests</span><span class="o">.</span><span class="n">map</span> <span class="k">do</span> <span class="o">|</span><span class="n">b</span><span class="o">|</span>
+    <span class="o">[</span><span class="n">a</span><span class="p">,</span> <span class="s1">'Starting the line here '</span><span class="p">,</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="s1">'and continuing here to close'</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="n">a</span><span class=" [...]
+  <span class="k">end</span>
+<span class="k">end</span>
+
+<span class="n">all</span><span class="o">.</span><span class="n">each</span> <span class="p">{</span><span class="o">|</span><span class="n">e</span><span class="o">|</span> <span class="nb">puts</span> <span class="n">e</span><span class="p">}</span>
+</pre>
+</div>
+<p><b>Starting the line here *and continuing here to close*</b></p>
+<p><b>Starting the line here /and continuing here to close/</b></p>
+<p><b>Starting the line here =and continuing here to close=</b></p>
+<p><b>Starting the line here ~and continuing here to close~</b></p>
+<p><b>Starting the line here _and continuing here to close_</b></p>
+<p><b>Starting the line here +and continuing here to close+</b></p>
+<p><i>Starting the line here *and continuing here to close*</i></p>
+<p><i>Starting the line here /and continuing here to close/</i></p>
+<p><i>Starting the line here =and continuing here to close=</i></p>
+<p><i>Starting the line here ~and continuing here to close~</i></p>
+<p><i>Starting the line here _and continuing here to close_</i></p>
+<p><i>Starting the line here +and continuing here to close+</i></p>
+<p><code>Starting the line here *and continuing here to close*</code></p>
+<p><code>Starting the line here /and continuing here to close/</code></p>
+<p><code>Starting the line here =and continuing here to close=</code></p>
+<p><code>Starting the line here ~and continuing here to close~</code></p>
+<p><code>Starting the line here _and continuing here to close_</code></p>
+<p><code>Starting the line here +and continuing here to close+</code></p>
+<p><code>Starting the line here *and continuing here to close*</code></p>
+<p><code>Starting the line here /and continuing here to close/</code></p>
+<p><code>Starting the line here =and continuing here to close=</code></p>
+<p><code>Starting the line here ~and continuing here to close~</code></p>
+<p><code>Starting the line here _and continuing here to close_</code></p>
+<p><code>Starting the line here +and continuing here to close+</code></p>
+<p><span style="text-decoration:underline;">Starting the line here *and continuing here to close*</span></p>
+<p><span style="text-decoration:underline;">Starting the line here /and continuing here to close/</span></p>
+<p><span style="text-decoration:underline;">Starting the line here =and continuing here to close=</span></p>
+<p><span style="text-decoration:underline;">Starting the line here ~and continuing here to close~</span></p>
+<p><span style="text-decoration:underline;">Starting the line here _and continuing here to close_</span></p>
+<p><span style="text-decoration:underline;">Starting the line here +and continuing here to close+</span></p>
+<p><del>Starting the line here *and continuing here to close*</del></p>
+<p><del>Starting the line here /and continuing here to close/</del></p>
+<p><del>Starting the line here =and continuing here to close=</del></p>
+<p><del>Starting the line here ~and continuing here to close~</del></p>
+<p><del>Starting the line here _and continuing here to close_</del></p>
+<p><del>Starting the line here +and continuing here to close+</del></p>
+<h2>Multiline support test :: two lines</h2>
+<div class="highlight"><pre><span class="n">emphasis_tests</span> <span class="o">=</span> <span class="o">[</span><span class="s2">"*"</span><span class="p">,</span><span class="s2">"/"</span><span class="p">,</span><span class="s2">"="</span><span class="p">,</span><span class="s2">"~"</span><span class="p">,</span><span class="s2">"_"</span><span class="p">,</span><span class="s2">"+"</span><span class="o">]</span>
+
+<span class="n">all</span> <span class="o">=</span> <span class="n">emphasis_tests</span><span class="o">.</span><span class="n">map</span> <span class="k">do</span> <span class="o">|</span><span class="n">a</span><span class="o">|</span>
+  <span class="n">emphasis_tests</span><span class="o">.</span><span class="n">map</span> <span class="k">do</span> <span class="o">|</span><span class="n">b</span><span class="o">|</span>
+    <span class="o">[</span><span class="n">a</span><span class="p">,</span> <span class="s1">'Starting the line here '</span><span class="p">,</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="s1">'and continuing here'</span><span class="p">,</span> <span class="s2">"</span><span class="se">\n</span><span class="s2">"</span><span cla [...]
+  <span class="k">end</span>
+<span class="k">end</span>
+
+<span class="n">all</span><span class="o">.</span><span class="n">each</span> <span class="p">{</span><span class="o">|</span><span class="n">e</span><span class="o">|</span> <span class="nb">puts</span> <span class="n">e</span><span class="p">}</span>
+</pre>
+</div>
+<p><b>Starting the line here *and continuing here to close*</b></p>
+<p><b>Starting the line here /and continuing here to close/</b></p>
+<p><b>Starting the line here =and continuing here to close=</b></p>
+<p><b>Starting the line here ~and continuing here to close~</b></p>
+<p><b>Starting the line here _and continuing here to close_</b></p>
+<p><b>Starting the line here +and continuing here to close+</b></p>
+<p><i>Starting the line here *and continuing here to close*</i></p>
+<p><i>Starting the line here /and continuing here to close/</i></p>
+<p><i>Starting the line here =and continuing here to close=</i></p>
+<p><i>Starting the line here ~and continuing here to close~</i></p>
+<p><i>Starting the line here _and continuing here to close_</i></p>
+<p><i>Starting the line here +and continuing here to close+</i></p>
+<p><code>Starting the line here *and continuing here to close*</code></p>
+<p><code>Starting the line here /and continuing here to close/</code></p>
+<p><code>Starting the line here =and continuing here to close=</code></p>
+<p><code>Starting the line here ~and continuing here to close~</code></p>
+<p><code>Starting the line here _and continuing here to close_</code></p>
+<p><code>Starting the line here +and continuing here to close+</code></p>
+<p><code>Starting the line here *and continuing here to close*</code></p>
+<p><code>Starting the line here /and continuing here to close/</code></p>
+<p><code>Starting the line here =and continuing here to close=</code></p>
+<p><code>Starting the line here ~and continuing here to close~</code></p>
+<p><code>Starting the line here _and continuing here to close_</code></p>
+<p><code>Starting the line here +and continuing here to close+</code></p>
+<p><span style="text-decoration:underline;">Starting the line here *and continuing here to close*</span></p>
+<p><span style="text-decoration:underline;">Starting the line here /and continuing here to close/</span></p>
+<p><span style="text-decoration:underline;">Starting the line here =and continuing here to close=</span></p>
+<p><span style="text-decoration:underline;">Starting the line here ~and continuing here to close~</span></p>
+<p><span style="text-decoration:underline;">Starting the line here _and continuing here to close_</span></p>
+<p><span style="text-decoration:underline;">Starting the line here +and continuing here to close+</span></p>
+<p><del>Starting the line here *and continuing here to close*</del></p>
+<p><del>Starting the line here /and continuing here to close/</del></p>
+<p><del>Starting the line here =and continuing here to close=</del></p>
+<p><del>Starting the line here ~and continuing here to close~</del></p>
+<p><del>Starting the line here _and continuing here to close_</del></p>
+<p><del>Starting the line here +and continuing here to close+</del></p>
+<h2>Together in same paragraph test</h2>
+<p><b>bold</b> *bold* <b>bold</b></p>
+<p><i>italic</i> *bold* <i>italic</i></p>
+<p><code>code</code> *bold* <code>code</code></p>
+<p><code>verbatim</code> *bold* <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <b>bold</b> _underline_</p>
+<p><del>strikethrough</del> *bold* <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <b>bold</b> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <b>bold</b> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <b>bold</b> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <b>bold</b> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <b>bold</b> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <b>bold</b> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> /italic/ <b>bold</b></p>
+<p><i>italic</i> /italic/ <i>italic</i></p>
+<p><code>code</code> /italic/ <code>code</code></p>
+<p><code>verbatim</code> /italic/ <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <i>italic</i> _underline_</p>
+<p><del>strikethrough</del> /italic/ <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <i>italic</i> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <i>italic</i> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <i>italic</i> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <i>italic</i> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <i>italic</i> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <i>italic</i> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> =code= <b>bold</b></p>
+<p><i>italic</i> =code= <i>italic</i></p>
+<p><code>code</code> =code= <code>code</code></p>
+<p><code>verbatim</code> =code= <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <code>code</code> _underline_</p>
+<p><del>strikethrough</del> =code= <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <code>code</code> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <code>code</code> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <code>code</code> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <code>code</code> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <code>code</code> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <code>code</code> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> ~verbatim~ <b>bold</b></p>
+<p><i>italic</i> ~verbatim~ <i>italic</i></p>
+<p><code>code</code> ~verbatim~ <code>code</code></p>
+<p><code>verbatim</code> ~verbatim~ <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <code>verbatim</code> _underline_</p>
+<p><del>strikethrough</del> ~verbatim~ <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <code>verbatim</code> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <code>verbatim</code> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <code>verbatim</code> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <code>verbatim</code> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <code>verbatim</code> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <code>verbatim</code> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> _underline_  <b>bold</b></p>
+<p><i>italic</i> _underline_  <i>italic</i></p>
+<p><code>code</code> _underline_  <code>code</code></p>
+<p><code>verbatim</code> _underline_  <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <span style="text-decoration:underline;">underline</span>  <span style="text-decoration:underline;">underline</span></p>
+<p><del>strikethrough</del> _underline_  <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <span style="text-decoration:underline;">underline</span>  <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <span style="text-decoration:underline;">underline</span>  <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <span style="text-decoration:underline;">underline</span>  <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <span style="text-decoration:underline;">underline</span>  <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <span style="text-decoration:underline;">underline</span>  <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <span style="text-decoration:underline;">underline</span>  <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> +strikethrough+ <b>bold</b></p>
+<p><i>italic</i> +strikethrough+ <i>italic</i></p>
+<p><code>code</code> +strikethrough+ <code>code</code></p>
+<p><code>verbatim</code> +strikethrough+ <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <del>strikethrough</del> _underline_</p>
+<p><del>strikethrough</del> +strikethrough+ <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <del>strikethrough</del> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <del>strikethrough</del> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <del>strikethrough</del> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <del>strikethrough</del> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <del>strikethrough</del> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <del>strikethrough</del> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> <a href="http://www.bing.com">http://www.bing.com</a> <b>bold</b></p>
+<p><i>italic</i> <a href="http://www.bing.com">http://www.bing.com</a> <i>italic</i></p>
+<p><code>code</code> <a href="http://www.bing.com">http://www.bing.com</a> <code>code</code></p>
+<p><code>verbatim</code> <a href="http://www.bing.com">http://www.bing.com</a> <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <a href="http://www.bing.com">http://www.bing.com</a> <span style="text-decoration:underline;">underline</span></p>
+<p><del>strikethrough</del> <a href="http://www.bing.com">http://www.bing.com</a> <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.bing.com">http://www.bing.com</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> <a href="http://www.google.com">http://www.google.com</a> <b>bold</b></p>
+<p><i>italic</i> <a href="http://www.google.com">http://www.google.com</a> <i>italic</i></p>
+<p><code>code</code> <a href="http://www.google.com">http://www.google.com</a> <code>code</code></p>
+<p><code>verbatim</code> <a href="http://www.google.com">http://www.google.com</a> <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <a href="http://www.google.com">http://www.google.com</a> <span style="text-decoration:underline;">underline</span></p>
+<p><del>strikethrough</del> <a href="http://www.google.com">http://www.google.com</a> <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> <a href="http://www.xkcd.com">helpful text link</a> <b>bold</b></p>
+<p><i>italic</i> <a href="http://www.xkcd.com">helpful text link</a> <i>italic</i></p>
+<p><code>code</code> <a href="http://www.xkcd.com">helpful text link</a> <code>code</code></p>
+<p><code>verbatim</code> <a href="http://www.xkcd.com">helpful text link</a> <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <a href="http://www.xkcd.com">helpful text link</a> <span style="text-decoration:underline;">underline</span></p>
+<p><del>strikethrough</del> <a href="http://www.xkcd.com">helpful text link</a> <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.xkcd.com">helpful text link</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <b>bold</b></p>
+<p><i>italic</i> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <i>italic</i></p>
+<p><code>code</code> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <code>code</code></p>
+<p><code>verbatim</code> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <span style="text-decoration:underline;">underline</span></p>
+<p><del>strikethrough</del> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <b>bold</b></p>
+<p><i>italic</i> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <i>italic</i></p>
+<p><code>code</code> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <code>code</code></p>
+<p><code>verbatim</code> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <span style="text-decoration:underline;">underline</span></p>
+<p><del>strikethrough</del> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><b>bold</b> <a href="http://www.google.com">http://www.google.com</a> <b>bold</b></p>
+<p><i>italic</i> <a href="http://www.google.com">http://www.google.com</a> <i>italic</i></p>
+<p><code>code</code> <a href="http://www.google.com">http://www.google.com</a> <code>code</code></p>
+<p><code>verbatim</code> <a href="http://www.google.com">http://www.google.com</a> <code>verbatim</code></p>
+<p><span style="text-decoration:underline;">underline</span>  <a href="http://www.google.com">http://www.google.com</a> <span style="text-decoration:underline;">underline</span></p>
+<p><del>strikethrough</del> <a href="http://www.google.com">http://www.google.com</a> <del>strikethrough</del></p>
+<p><a href="http://www.bing.com">http://www.bing.com</a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.bing.com">http://www.bing.com</a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.google.com">http://www.google.com</a></p>
+<p><a href="http://www.xkcd.com">helpful text link</a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.xkcd.com">helpful text link</a></p>
+<p><a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></p>
+<p><a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></p>
+<p><a href="http://www.google.com">http://www.google.com</a> <a href="http://www.google.com">http://www.google.com</a> <a href="http://www.google.com">http://www.google.com</a></p>
+<h2>Together within a table</h2>
+<table>
+  <tr><td><b>bold</b> *bold*</td><td><i>italic</i> *bold*</td><td><code>code</code> *bold*</td><td><code>verbatim</code> *bold*</td><td><span style="text-decoration:underline;">underline</span>  <b>bold</b></td><td><del>strikethrough</del> *bold*</td><td><a href="http://www.bing.com">http://www.bing.com</a> <b>bold</b></td><td><a href="http://www.google.com">http://www.google.com</a> <b>bold</b></td><td><a href="http://www.xkcd.com">helpful text link</a> <b>bold</b></td><td><a href="http [...]
+  <tr><td><b>bold</b> /italic/</td><td><i>italic</i> /italic/</td><td><code>code</code> /italic/</td><td><code>verbatim</code> /italic/</td><td><span style="text-decoration:underline;">underline</span>  <i>italic</i></td><td><del>strikethrough</del> /italic/</td><td><a href="http://www.bing.com">http://www.bing.com</a> <i>italic</i></td><td><a href="http://www.google.com">http://www.google.com</a> <i>italic</i></td><td><a href="http://www.xkcd.com">helpful text link</a> <i>italic</i></td [...]
+  <tr><td><b>bold</b> =code=</td><td><i>italic</i> =code=</td><td><code>code</code> =code=</td><td><code>verbatim</code> =code=</td><td><span style="text-decoration:underline;">underline</span>  <code>code</code></td><td><del>strikethrough</del> =code=</td><td><a href="http://www.bing.com">http://www.bing.com</a> <code>code</code></td><td><a href="http://www.google.com">http://www.google.com</a> <code>code</code></td><td><a href="http://www.xkcd.com">helpful text link</a> <code>code</cod [...]
+  <tr><td><b>bold</b> ~verbatim~</td><td><i>italic</i> ~verbatim~</td><td><code>code</code> ~verbatim~</td><td><code>verbatim</code> ~verbatim~</td><td><span style="text-decoration:underline;">underline</span>  <code>verbatim</code></td><td><del>strikethrough</del> ~verbatim~</td><td><a href="http://www.bing.com">http://www.bing.com</a> <code>verbatim</code></td><td><a href="http://www.google.com">http://www.google.com</a> <code>verbatim</code></td><td><a href="http://www.xkcd.com">helpf [...]
+  <tr><td><b>bold</b> _underline_</td><td><i>italic</i> _underline_</td><td><code>code</code> _underline_</td><td><code>verbatim</code> _underline_</td><td><span style="text-decoration:underline;">underline</span>  <span style="text-decoration:underline;">underline</span></td><td><del>strikethrough</del> _underline_</td><td><a href="http://www.bing.com">http://www.bing.com</a> <span style="text-decoration:underline;">underline</span></td><td><a href="http://www.google.com">http://www.goo [...]
+  <tr><td><b>bold</b> +strikethrough+</td><td><i>italic</i> +strikethrough+</td><td><code>code</code> +strikethrough+</td><td><code>verbatim</code> +strikethrough+</td><td><span style="text-decoration:underline;">underline</span>  <del>strikethrough</del></td><td><del>strikethrough</del> +strikethrough+</td><td><a href="http://www.bing.com">http://www.bing.com</a> <del>strikethrough</del></td><td><a href="http://www.google.com">http://www.google.com</a> <del>strikethrough</del></td><td>< [...]
+  <tr><td><b>bold</b> <a href="http://www.bing.com">http://www.bing.com</a></td><td><i>italic</i> <a href="http://www.bing.com">http://www.bing.com</a></td><td><code>code</code> <a href="http://www.bing.com">http://www.bing.com</a></td><td><code>verbatim</code> <a href="http://www.bing.com">http://www.bing.com</a></td><td><span style="text-decoration:underline;">underline</span>  <a href="http://www.bing.com">http://www.bing.com</a></td><td><del>strikethrough</del> <a href="http://www.bi [...]
+  <tr><td><b>bold</b> <a href="http://www.google.com">http://www.google.com</a></td><td><i>italic</i> <a href="http://www.google.com">http://www.google.com</a></td><td><code>code</code> <a href="http://www.google.com">http://www.google.com</a></td><td><code>verbatim</code> <a href="http://www.google.com">http://www.google.com</a></td><td><span style="text-decoration:underline;">underline</span>  <a href="http://www.google.com">http://www.google.com</a></td><td><del>strikethrough</del> <a [...]
+  <tr><td><b>bold</b> <a href="http://www.xkcd.com">helpful text link</a></td><td><i>italic</i> <a href="http://www.xkcd.com">helpful text link</a></td><td><code>code</code> <a href="http://www.xkcd.com">helpful text link</a></td><td><code>verbatim</code> <a href="http://www.xkcd.com">helpful text link</a></td><td><span style="text-decoration:underline;">underline</span>  <a href="http://www.xkcd.com">helpful text link</a></td><td><del>strikethrough</del> <a href="http://www.xkcd.com">he [...]
+  <tr><td><b>bold</b> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></td><td><i>italic</i> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg" /></a></td><td><code>code</code> <a href="http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg"><img src="http://farm7.static.flickr.com/6078/ [...]
+  <tr><td><b>bold</b> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></td><td><i>italic</i> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></td><td><code>code</code> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></td><td><code>verbatim</code> <a href="http://www.xkcd.com"><img src="http://imgs.xkcd.com/comics/t_cells.png" /></a></td><td><span style="text-decoration:und [...]
+  <tr><td><b>bold</b> <a href="http://www.google.com">http://www.google.com</a></td><td><i>italic</i> <a href="http://www.google.com">http://www.google.com</a></td><td><code>code</code> <a href="http://www.google.com">http://www.google.com</a></td><td><code>verbatim</code> <a href="http://www.google.com">http://www.google.com</a></td><td><span style="text-decoration:underline;">underline</span>  <a href="http://www.google.com">http://www.google.com</a></td><td><del>strikethrough</del> <a [...]
+</table>
diff --git a/spec/html_examples/emphasis.org b/spec/html_examples/emphasis.org
new file mode 100644
index 0000000..673a288
--- /dev/null
+++ b/spec/html_examples/emphasis.org
@@ -0,0 +1,804 @@
+* Inline Formatting test for emphasis
+** Simple feature test
+
+*bold*
+
+/italic/
+
+=code=
+
+~verbatim~
+
+_underline_ 
+
++strikethrough+
+
+[[http://www.bing.com]]
+
+[[http://www.google.com]]
+
+http://www.gmail.com
+
+[[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com>
+
+** All together in one line
+
+*bold* /italic/ =code= ~verbatim~ _underline_  +strikethrough+ [[http://www.bing.com]] [[http://www.google.com]] http://www.gmail.com [[http://www.xkcd.com][helpful text link]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] <http://www.google.com>
+
+** Within code test
+
+#+begin_src ruby :results output
+emphasis_tests = [
+"*bold*",
+"/italic/",
+"=code=",
+"~verbatim~",
+"_underline_ ",
+"+strikethrough+",
+"[[http://www.bing.com]]",
+"[[http://www.google.com]]",
+"[[http://www.xkcd.com][helpful text link]]",
+"[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]",
+"[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]",
+"<http://www.google.com>",
+]
+
+all = emphasis_tests.map do |a|
+  emphasis_tests.map do |b|
+    [b, ' ', a, ' ', b, "\n\n"].join('')
+  end
+end
+
+all.each {|e| puts e}
+#+end_src
+
+** Mixed together test
+
+#+begin_src ruby :results output
+emphasis_tests = ["*","/","=","~","_","+"]
+
+all = emphasis_tests.map do |a|
+  emphasis_tests.map do |b|
+    [[a, 'Answer: ', b, '42', b, ' ',a, "\n\n"].join(''),
+     [a, 'Answer: ', b, '42', b, '',a, "\n\n"].join('')].flatten
+  end
+end
+
+all.each {|e| puts e}
+#+end_src
+
+*Answer: *42* *
+
+*Answer: *42**
+
+*Answer: /42/ *
+
+*Answer: /42/*
+
+*Answer: =42= *
+
+*Answer: =42=*
+
+*Answer: ~42~ *
+
+*Answer: ~42~*
+
+*Answer: _42_ *
+
+*Answer: _42_*
+
+*Answer: +42+ *
+
+*Answer: +42+*
+
+/Answer: *42* /
+
+/Answer: *42*/
+
+/Answer: /42/ /
+
+/Answer: /42//
+
+/Answer: =42= /
+
+/Answer: =42=/
+
+/Answer: ~42~ /
+
+/Answer: ~42~/
+
+/Answer: _42_ /
+
+/Answer: _42_/
+
+/Answer: +42+ /
+
+/Answer: +42+/
+
+=Answer: *42* =
+
+=Answer: *42*=
+
+=Answer: /42/ =
+
+=Answer: /42/=
+
+=Answer: =42= =
+
+=Answer: =42==
+
+=Answer: ~42~ =
+
+=Answer: ~42~=
+
+=Answer: _42_ =
+
+=Answer: _42_=
+
+=Answer: +42+ =
+
+=Answer: +42+=
+
+~Answer: *42* ~
+
+~Answer: *42*~
+
+~Answer: /42/ ~
+
+~Answer: /42/~
+
+~Answer: =42= ~
+
+~Answer: =42=~
+
+~Answer: ~42~ ~
+
+~Answer: ~42~~
+
+~Answer: _42_ ~
+
+~Answer: _42_~
+
+~Answer: +42+ ~
+
+~Answer: +42+~
+
+_Answer: *42* _
+
+_Answer: *42*_
+
+_Answer: /42/ _
+
+_Answer: /42/_
+
+_Answer: =42= _
+
+_Answer: =42=_
+
+_Answer: ~42~ _
+
+_Answer: ~42~_
+
+_Answer: _42_ _
+
+_Answer: _42__
+
+_Answer: +42+ _
+
+_Answer: +42+_
+
++Answer: *42* +
+
++Answer: *42*+
+
++Answer: /42/ +
+
++Answer: /42/+
+
++Answer: =42= +
+
++Answer: =42=+
+
++Answer: ~42~ +
+
++Answer: ~42~+
+
++Answer: _42_ +
+
++Answer: _42_+
+
++Answer: +42+ +
+
++Answer: +42++
+
+** Multiline support test :: one line
+
+#+begin_src ruby :results output
+emphasis_tests = ["*","/","=","~","_","+"]
+
+all = emphasis_tests.map do |a|
+  emphasis_tests.map do |b|
+    [a, 'Starting the line here ', "\n", b, 'and continuing here to close', b, a, "\n\n"].join('')
+  end
+end
+
+all.each {|e| puts e}
+#+end_src
+
+*Starting the line here 
+*and continuing here to close**
+
+*Starting the line here 
+/and continuing here to close/*
+
+*Starting the line here 
+=and continuing here to close=*
+
+*Starting the line here 
+~and continuing here to close~*
+
+*Starting the line here 
+_and continuing here to close_*
+
+*Starting the line here 
++and continuing here to close+*
+
+/Starting the line here 
+*and continuing here to close*/
+
+/Starting the line here 
+/and continuing here to close//
+
+/Starting the line here 
+=and continuing here to close=/
+
+/Starting the line here 
+~and continuing here to close~/
+
+/Starting the line here 
+_and continuing here to close_/
+
+/Starting the line here 
++and continuing here to close+/
+
+=Starting the line here 
+*and continuing here to close*=
+
+=Starting the line here 
+/and continuing here to close/=
+
+=Starting the line here 
+=and continuing here to close==
+
+=Starting the line here 
+~and continuing here to close~=
+
+=Starting the line here 
+_and continuing here to close_=
+
+=Starting the line here 
++and continuing here to close+=
+
+~Starting the line here 
+*and continuing here to close*~
+
+~Starting the line here 
+/and continuing here to close/~
+
+~Starting the line here 
+=and continuing here to close=~
+
+~Starting the line here 
+~and continuing here to close~~
+
+~Starting the line here 
+_and continuing here to close_~
+
+~Starting the line here 
++and continuing here to close+~
+
+_Starting the line here 
+*and continuing here to close*_
+
+_Starting the line here 
+/and continuing here to close/_
+
+_Starting the line here 
+=and continuing here to close=_
+
+_Starting the line here 
+~and continuing here to close~_
+
+_Starting the line here 
+_and continuing here to close__
+
+_Starting the line here 
++and continuing here to close+_
+
++Starting the line here 
+*and continuing here to close*+
+
++Starting the line here 
+/and continuing here to close/+
+
++Starting the line here 
+=and continuing here to close=+
+
++Starting the line here 
+~and continuing here to close~+
+
++Starting the line here 
+_and continuing here to close_+
+
++Starting the line here 
++and continuing here to close++
+
+** Multiline support test :: two lines
+
+#+begin_src ruby :results output
+emphasis_tests = ["*","/","=","~","_","+"]
+
+all = emphasis_tests.map do |a|
+  emphasis_tests.map do |b|
+    [a, 'Starting the line here ', "\n", b, 'and continuing here', "\n", 'to close', b, a, "\n\n"].join('')
+  end
+end
+
+all.each {|e| puts e}
+#+end_src
+
+*Starting the line here 
+*and continuing here
+to close**
+
+*Starting the line here 
+/and continuing here
+to close/*
+
+*Starting the line here 
+=and continuing here
+to close=*
+
+*Starting the line here 
+~and continuing here
+to close~*
+
+*Starting the line here 
+_and continuing here
+to close_*
+
+*Starting the line here 
++and continuing here
+to close+*
+
+/Starting the line here 
+*and continuing here
+to close*/
+
+/Starting the line here 
+/and continuing here
+to close//
+
+/Starting the line here 
+=and continuing here
+to close=/
+
+/Starting the line here 
+~and continuing here
+to close~/
+
+/Starting the line here 
+_and continuing here
+to close_/
+
+/Starting the line here 
++and continuing here
+to close+/
+
+=Starting the line here 
+*and continuing here
+to close*=
+
+=Starting the line here 
+/and continuing here
+to close/=
+
+=Starting the line here 
+=and continuing here
+to close==
+
+=Starting the line here 
+~and continuing here
+to close~=
+
+=Starting the line here 
+_and continuing here
+to close_=
+
+=Starting the line here 
++and continuing here
+to close+=
+
+~Starting the line here 
+*and continuing here
+to close*~
+
+~Starting the line here 
+/and continuing here
+to close/~
+
+~Starting the line here 
+=and continuing here
+to close=~
+
+~Starting the line here 
+~and continuing here
+to close~~
+
+~Starting the line here 
+_and continuing here
+to close_~
+
+~Starting the line here 
++and continuing here
+to close+~
+
+_Starting the line here 
+*and continuing here
+to close*_
+
+_Starting the line here 
+/and continuing here
+to close/_
+
+_Starting the line here 
+=and continuing here
+to close=_
+
+_Starting the line here 
+~and continuing here
+to close~_
+
+_Starting the line here 
+_and continuing here
+to close__
+
+_Starting the line here 
++and continuing here
+to close+_
+
++Starting the line here 
+*and continuing here
+to close*+
+
++Starting the line here 
+/and continuing here
+to close/+
+
++Starting the line here 
+=and continuing here
+to close=+
+
++Starting the line here 
+~and continuing here
+to close~+
+
++Starting the line here 
+_and continuing here
+to close_+
+
++Starting the line here 
++and continuing here
+to close++
+
+** Together in same paragraph test
+
+*bold* *bold* *bold*
+
+/italic/ *bold* /italic/
+
+=code= *bold* =code=
+
+~verbatim~ *bold* ~verbatim~
+
+_underline_  *bold* _underline_ 
+
++strikethrough+ *bold* +strikethrough+
+
+[[http://www.bing.com]] *bold* [[http://www.bing.com]]
+
+[[http://www.google.com]] *bold* [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] *bold* [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] *bold* [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] *bold* [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> *bold* <http://www.google.com>
+
+*bold* /italic/ *bold*
+
+/italic/ /italic/ /italic/
+
+=code= /italic/ =code=
+
+~verbatim~ /italic/ ~verbatim~
+
+_underline_  /italic/ _underline_ 
+
++strikethrough+ /italic/ +strikethrough+
+
+[[http://www.bing.com]] /italic/ [[http://www.bing.com]]
+
+[[http://www.google.com]] /italic/ [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] /italic/ [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] /italic/ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] /italic/ [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> /italic/ <http://www.google.com>
+
+*bold* =code= *bold*
+
+/italic/ =code= /italic/
+
+=code= =code= =code=
+
+~verbatim~ =code= ~verbatim~
+
+_underline_  =code= _underline_ 
+
++strikethrough+ =code= +strikethrough+
+
+[[http://www.bing.com]] =code= [[http://www.bing.com]]
+
+[[http://www.google.com]] =code= [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] =code= [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] =code= [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] =code= [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> =code= <http://www.google.com>
+
+*bold* ~verbatim~ *bold*
+
+/italic/ ~verbatim~ /italic/
+
+=code= ~verbatim~ =code=
+
+~verbatim~ ~verbatim~ ~verbatim~
+
+_underline_  ~verbatim~ _underline_ 
+
++strikethrough+ ~verbatim~ +strikethrough+
+
+[[http://www.bing.com]] ~verbatim~ [[http://www.bing.com]]
+
+[[http://www.google.com]] ~verbatim~ [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] ~verbatim~ [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] ~verbatim~ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] ~verbatim~ [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> ~verbatim~ <http://www.google.com>
+
+*bold* _underline_  *bold*
+
+/italic/ _underline_  /italic/
+
+=code= _underline_  =code=
+
+~verbatim~ _underline_  ~verbatim~
+
+_underline_  _underline_  _underline_ 
+
++strikethrough+ _underline_  +strikethrough+
+
+[[http://www.bing.com]] _underline_  [[http://www.bing.com]]
+
+[[http://www.google.com]] _underline_  [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] _underline_  [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] _underline_  [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] _underline_  [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> _underline_  <http://www.google.com>
+
+*bold* +strikethrough+ *bold*
+
+/italic/ +strikethrough+ /italic/
+
+=code= +strikethrough+ =code=
+
+~verbatim~ +strikethrough+ ~verbatim~
+
+_underline_  +strikethrough+ _underline_ 
+
++strikethrough+ +strikethrough+ +strikethrough+
+
+[[http://www.bing.com]] +strikethrough+ [[http://www.bing.com]]
+
+[[http://www.google.com]] +strikethrough+ [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] +strikethrough+ [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] +strikethrough+ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] +strikethrough+ [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> +strikethrough+ <http://www.google.com>
+
+*bold* [[http://www.bing.com]] *bold*
+
+/italic/ [[http://www.bing.com]] /italic/
+
+=code= [[http://www.bing.com]] =code=
+
+~verbatim~ [[http://www.bing.com]] ~verbatim~
+
+_underline_  [[http://www.bing.com]] _underline_ 
+
++strikethrough+ [[http://www.bing.com]] +strikethrough+
+
+[[http://www.bing.com]] [[http://www.bing.com]] [[http://www.bing.com]]
+
+[[http://www.google.com]] [[http://www.bing.com]] [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] [[http://www.bing.com]] [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.bing.com]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://www.bing.com]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> [[http://www.bing.com]] <http://www.google.com>
+
+*bold* [[http://www.google.com]] *bold*
+
+/italic/ [[http://www.google.com]] /italic/
+
+=code= [[http://www.google.com]] =code=
+
+~verbatim~ [[http://www.google.com]] ~verbatim~
+
+_underline_  [[http://www.google.com]] _underline_ 
+
++strikethrough+ [[http://www.google.com]] +strikethrough+
+
+[[http://www.bing.com]] [[http://www.google.com]] [[http://www.bing.com]]
+
+[[http://www.google.com]] [[http://www.google.com]] [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] [[http://www.google.com]] [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.google.com]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://www.google.com]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> [[http://www.google.com]] <http://www.google.com>
+
+*bold* [[http://www.xkcd.com][helpful text link]] *bold*
+
+/italic/ [[http://www.xkcd.com][helpful text link]] /italic/
+
+=code= [[http://www.xkcd.com][helpful text link]] =code=
+
+~verbatim~ [[http://www.xkcd.com][helpful text link]] ~verbatim~
+
+_underline_  [[http://www.xkcd.com][helpful text link]] _underline_ 
+
++strikethrough+ [[http://www.xkcd.com][helpful text link]] +strikethrough+
+
+[[http://www.bing.com]] [[http://www.xkcd.com][helpful text link]] [[http://www.bing.com]]
+
+[[http://www.google.com]] [[http://www.xkcd.com][helpful text link]] [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] [[http://www.xkcd.com][helpful text link]] [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.xkcd.com][helpful text link]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://www.xkcd.com][helpful text link]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> [[http://www.xkcd.com][helpful text link]] <http://www.google.com>
+
+*bold* [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] *bold*
+
+/italic/ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] /italic/
+
+=code= [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] =code=
+
+~verbatim~ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] ~verbatim~
+
+_underline_  [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] _underline_ 
+
++strikethrough+ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] +strikethrough+
+
+[[http://www.bing.com]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.bing.com]]
+
+[[http://www.google.com]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] <http://www.google.com>
+
+*bold* [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] *bold*
+
+/italic/ [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] /italic/
+
+=code= [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] =code=
+
+~verbatim~ [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] ~verbatim~
+
+_underline_  [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] _underline_ 
+
++strikethrough+ [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] +strikethrough+
+
+[[http://www.bing.com]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://www.bing.com]]
+
+[[http://www.google.com]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] <http://www.google.com>
+
+*bold* <http://www.google.com> *bold*
+
+/italic/ <http://www.google.com> /italic/
+
+=code= <http://www.google.com> =code=
+
+~verbatim~ <http://www.google.com> ~verbatim~
+
+_underline_  <http://www.google.com> _underline_ 
+
++strikethrough+ <http://www.google.com> +strikethrough+
+
+[[http://www.bing.com]] <http://www.google.com> [[http://www.bing.com]]
+
+[[http://www.google.com]] <http://www.google.com> [[http://www.google.com]]
+
+[[http://www.xkcd.com][helpful text link]] <http://www.google.com> [[http://www.xkcd.com][helpful text link]]
+
+[[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] <http://www.google.com> [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]]
+
+[[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]] <http://www.google.com> [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]
+
+<http://www.google.com> <http://www.google.com> <http://www.google.com>
+
+** Together within a table
+
+| *bold* *bold*                                                        | /italic/ *bold*                                                        | =code= *bold*                                                        | ~verbatim~ *bold*                                                        | _underline_  *bold*                                                        | +strikethrough+ *bold*                                                        | [[http://www.bing.com]] *bold*              [...]
+| *bold* /italic/                                                      | /italic/ /italic/                                                      | =code= /italic/                                                      | ~verbatim~ /italic/                                                      | _underline_  /italic/                                                      | +strikethrough+ /italic/                                                      | [[http://www.bing.com]] /italic/            [...]
+| *bold* =code=                                                        | /italic/ =code=                                                        | =code= =code=                                                        | ~verbatim~ =code=                                                        | _underline_  =code=                                                        | +strikethrough+ =code=                                                        | [[http://www.bing.com]] =code=              [...]
+| *bold* ~verbatim~                                                    | /italic/ ~verbatim~                                                    | =code= ~verbatim~                                                    | ~verbatim~ ~verbatim~                                                    | _underline_  ~verbatim~                                                    | +strikethrough+ ~verbatim~                                                    | [[http://www.bing.com]] ~verbatim~          [...]
+| *bold* _underline_                                                   | /italic/ _underline_                                                   | =code= _underline_                                                   | ~verbatim~ _underline_                                                   | _underline_  _underline_                                                   | +strikethrough+ _underline_                                                   | [[http://www.bing.com]] _underline_         [...]
+| *bold* +strikethrough+                                               | /italic/ +strikethrough+                                               | =code= +strikethrough+                                               | ~verbatim~ +strikethrough+                                               | _underline_  +strikethrough+                                               | +strikethrough+ +strikethrough+                                               | [[http://www.bing.com]] +strikethrough+     [...]
+| *bold* [[http://www.bing.com]]                                           | /italic/ [[http://www.bing.com]]                                           | =code= [[http://www.bing.com]]                                           | ~verbatim~ [[http://www.bing.com]]                                           | _underline_  [[http://www.bing.com]]                                           | +strikethrough+ [[http://www.bing.com]]                                           | [[http://www.bing.c [...]
+| *bold* [[http://www.google.com]]                                         | /italic/ [[http://www.google.com]]                                         | =code= [[http://www.google.com]]                                         | ~verbatim~ [[http://www.google.com]]                                         | _underline_  [[http://www.google.com]]                                         | +strikethrough+ [[http://www.google.com]]                                         | [[http://www.bing.c [...]
+| *bold* [[http://www.xkcd.com][helpful text link]]                                             | /italic/ [[http://www.xkcd.com][helpful text link]]                                             | =code= [[http://www.xkcd.com][helpful text link]]                                             | ~verbatim~ [[http://www.xkcd.com][helpful text link]]                                             | _underline_  [[http://www.xkcd.com][helpful text link]]                                              [...]
+| *bold* [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] | /italic/ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] | =code= [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] | ~verbatim~ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] | _underline_  [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] | +strikethrough+ [[http://farm7.static.flickr.com/6078/6084185195_552aa270b2.jpg]] | [[http://www.bing.c [...]
+| *bold* [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]                       | /italic/ [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]                       | =code= [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]                       | ~verbatim~ [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]                       | _underline_  [[http://www.xkcd.com][http://imgs.xkcd.com/comics/t_cells.png]]                        [...]
+| *bold* <http://www.google.com>                                       | /italic/ <http://www.google.com>                                       | =code= <http://www.google.com>                                       | ~verbatim~ <http://www.google.com>                                       | _underline_  <http://www.google.com>                                       | +strikethrough+ <http://www.google.com>                                       | [[http://www.bing.com]] <http://www.google. [...]
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-org.git



More information about the Pkg-ruby-extras-commits mailing list