Skip to content

Commit

Permalink
Added a tbody tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Apr 21, 2009
1 parent c5ebd38 commit fa57f61
Showing 1 changed file with 51 additions and 48 deletions.
99 changes: 51 additions & 48 deletions views/textile.erb
Expand Up @@ -5,57 +5,60 @@
<th>HTML</th>
</thead>

<tr>
<td><pre>_italic_</pre></td>
<td><i>italic</i></td>
</tr>

<tr>
<td><pre>*strong*</pre></td>
<td><b>strong</b></td>
</tr>

<tr>
<td><pre>"Link Text":http://example.com/</pre></td>
<td><a href="http://example.com/">Link Text</a></td>
</tr>

<tr>
<td>
<pre> code
<tbody>
<tr>
<td><pre>_italic_</pre></td>
<td><i>italic</i></td>
</tr>

<tr>
<td><pre>*strong*</pre></td>
<td><b>strong</b></td>
</tr>

<tr>
<td><pre>"Link Text":http://example.com/</pre></td>
<td><a href="http://example.com/">Link Text</a></td>
</tr>

<tr>
<td>
<pre> code
here</pre>
</td>
<td>
<pre>code
</td>

<td>
<pre>code
here</pre>
</td>
</tr>
</td>
</tr>

<tr>
<td>
<pre>* item one
<tr>
<td>
<pre>* item one
* item two</pre>
</td>

<td>
<ul>
<li>item one</li>
<li>item two</li>
</ul>
</td>
</tr>

<tr>
<td>
<pre># item one
</td>

<td>
<ul>
<li>item one</li>
<li>item two</li>
</ul>
</td>
</tr>

<tr>
<td>
<pre># item one
# item two</pre>
</td>

<td>
<ol>
<li>item one</li>
<li>item two</li>
</ol>
</td>
</tr>
</td>

<td>
<ol>
<li>item one</li>
<li>item two</li>
</ol>
</td>
</tr>
</tbody>
</table>

0 comments on commit fa57f61

Please sign in to comment.