Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tables_symbols_math.adoc #34

Merged
merged 2 commits into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/tables_symbols_math.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Either table renders with table headers.
|===


=== Asciidoc tables from CSV data.
=== Asciidoc tables from CSV data

AsciiDoc tables can also be created directly from CSV data. Set the format block attribute to `csv` and insert the data inside the block delimiters directly:

Expand All @@ -102,8 +102,13 @@ Baauer,Harlem Shake,Hip Hop
The Lumineers,Ho Hey,Folk Rock
|===

=== Other table formatting options

There are numerous formatting options available. While some of the property settings are cryptic, they can be quite useful. There are numerous examples available at https://asciidoc.org/newtables.html. Here one example of what can be done with spans alignment in tables from that page:
There are numerous formatting options available. While some of the property settings are cryptic, they can be quite useful. There are numerous examples available at https://asciidoc.org/newtables.html.

==== Table column spans

Here one example of what can be done with spans alignment in tables from that page:

[source,adoc]
----
Expand All @@ -126,6 +131,9 @@ Which renders as follows:
|9 2+>|10
|============================


==== Numbered encoding table

The following example is code for a numbered encoding table with link target.

NOTE: Annotations have been added to the code to illustrate their use.
Expand Down
Loading