-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #288 from Mogztter/issue-29-table-styles
resolves #29 add table styles
- Loading branch information
Showing
3 changed files
with
429 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
= Table styles | ||
|
||
== Default table with header | ||
|
||
[cols=2*,options=header] | ||
|=== | ||
| Header 1 | ||
| Header 2 | ||
|
||
| Row 1, Col1 | ||
| Row 1, Col2 | ||
|
||
| Row 2, Col1 | ||
| Row 2, Col2 | ||
|
||
|=== | ||
|
||
== Frames | ||
|
||
=== Frame none | ||
|
||
[cols=2*,frame=none,options=header] | ||
|=== | ||
| Header 1 | ||
| Header 2 | ||
|
||
| Row 1, Col1 | ||
| Row 1, Col2 | ||
|
||
| Row 2, Col1 | ||
| Row 2, Col2 | ||
|
||
|=== | ||
|
||
=== Frame sides | ||
|
||
[cols=2*,frame=sides,options=header] | ||
|=== | ||
| Header 1 | ||
| Header 2 | ||
|
||
| Row 1, Col1 | ||
| Row 1, Col2 | ||
|
||
| Row 2, Col1 | ||
| Row 2, Col2 | ||
|
||
|=== | ||
|
||
=== Frame topbot | ||
|
||
[cols=2*,frame=topbot,options=header] | ||
|=== | ||
| Header 1 | ||
| Header 2 | ||
|
||
| Row 1, Col1 | ||
| Row 1, Col2 | ||
|
||
| Row 2, Col1 | ||
| Row 2, Col2 | ||
|
||
|=== | ||
|
||
== Grid | ||
|
||
=== Grid none | ||
|
||
[cols=2*,grid=none,options=header] | ||
|=== | ||
| Header 1 | ||
| Header 2 | ||
|
||
| Row 1, Col1 | ||
| Row 1, Col2 | ||
|
||
| Row 2, Col1 | ||
| Row 2, Col2 | ||
|
||
|=== | ||
|
||
=== Grid cols | ||
|
||
[cols=2*,grid=cols,options=header] | ||
|=== | ||
| Header 1 | ||
| Header 2 | ||
|
||
| Row 1, Col1 | ||
| Row 1, Col2 | ||
|
||
| Row 2, Col1 | ||
| Row 2, Col2 | ||
|
||
|=== | ||
|
||
=== Grid rows | ||
|
||
[cols=2*,grid=rows,options=header] | ||
|=== | ||
| Header 1 | ||
| Header 2 | ||
|
||
| Row 1, Col1 | ||
| Row 1, Col2 | ||
|
||
| Row 2, Col1 | ||
| Row 2, Col2 | ||
|
||
|=== | ||
|
||
== Combo | ||
|
||
=== Grid none, frame none | ||
|
||
[cols=2*,grid=none,frame=none,options=header] | ||
|=== | ||
| Header 1 | ||
| Header 2 | ||
|
||
| Row 1, Col1 | ||
| Row 1, Col2 | ||
|
||
| Row 2, Col1 | ||
| Row 2, Col2 | ||
|
||
|=== | ||
|
||
== Alignments | ||
|
||
[cols="^,<,>", options="header"] | ||
|=== | ||
|
||
| Name | ||
| Description | ||
| Version | ||
|
||
| Asciidoctor | ||
| Awesome way to write documentation | ||
| 2.0.4 | ||
|=== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.