aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions/tables.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/extensions/tables.md')
-rw-r--r--docs/extensions/tables.md47
1 files changed, 23 insertions, 24 deletions
diff --git a/docs/extensions/tables.md b/docs/extensions/tables.md
index e37a752..bb0872a 100644
--- a/docs/extensions/tables.md
+++ b/docs/extensions/tables.md
@@ -5,7 +5,7 @@ next_title: Smart Strong Extension
next_url: smart_strong.html
Tables
-----------------
+======
Summary
-------
@@ -23,32 +23,31 @@ Tables are defined using the syntax established in [PHP Markdown Extra][php].
Thus, the following text (taken from the above referenced PHP documentation):
-First Header | Second Header
-------------- | -------------
-Content Cell | Content Cell
-Content Cell | Content Cell
+ First Header | Second Header
+ ------------- | -------------
+ Content Cell | Content Cell
+ Content Cell | Content Cell
will be rendered as:
-<table>
-<thead>
-<tr>
-<th>First Header</th>
-<th>Second Header</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>Content Cell</td>
-<td>Content Cell</td>
-
-</tr>
-<tr>
-<td>Content Cell</td>
-<td>Content Cell</td>
-</tr>
-</tbody>
-</table>
+ <table>
+ <thead>
+ <tr>
+ <th>First Header</th>
+ <th>Second Header</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>Content Cell</td>
+ <td>Content Cell</td>
+ </tr>
+ <tr>
+ <td>Content Cell</td>
+ <td>Content Cell</td>
+ </tr>
+ </tbody>
+ </table>
Usage
-----