summaryrefslogtreecommitdiff
path: root/_i18n/es/_posts/2017-12-15-table-example.md
diff options
context:
space:
mode:
Diffstat (limited to '_i18n/es/_posts/2017-12-15-table-example.md')
-rw-r--r--_i18n/es/_posts/2017-12-15-table-example.md111
1 files changed, 111 insertions, 0 deletions
diff --git a/_i18n/es/_posts/2017-12-15-table-example.md b/_i18n/es/_posts/2017-12-15-table-example.md
new file mode 100644
index 0000000..af03411
--- /dev/null
+++ b/_i18n/es/_posts/2017-12-15-table-example.md
@@ -0,0 +1,111 @@
+---
+layout: post
+title: Table example
+subtitle:
+categories: example
+tags: [table]
+---
+
+## Table example as below
+
+**For now, these extended features are provided:**
+
+* Cells spanning multiple columns
+* Cells spanning multiple rows
+* Cells text align separately
+* Table header not required
+* Grouped table header rows or data rows
+
+### Rowspan and Colspan
+^^ in a cell indicates it should be merged with the cell above.
+This feature is contributed by [pmccloghrylaing](https://github.com/pmccloghrylaing).
+
+| Stage | Direct Products | ATP Yields |
+| ----: | --------------: | ---------: |
+|Glycolysis | 2 ATP ||
+|^^ | 2 NADH | 3--5 ATP |
+|Pyruvaye oxidation | 2 NADH | 5 ATP |
+|Citric acid cycle | 2 ATP ||
+|^^ | 6 NADH | 15 ATP |
+|^^ | 2 FADH | 3 ATP |
+| 30--32 ATP |||
+
+[ Net ATP yields per hexose]
+
+### Multiline
+A backslash at end to join cell contents with the following lines.
+This feature is contributed by [Lucas-C](https://github.com/Lucas-C).
+
+|: Easy Multiline :|||
+|:------ |:------ |:-------- |
+| Apple | Banana | Orange \
+| Apple | Banana | Orange \
+| Apple | Banana | Orange
+| Apple | Banana | Orange \
+| Apple | Banana | Orange |
+| Apple | Banana | Orange |
+
+
+### Headerless
+Table header can be eliminated.
+
+|--|--|--|--|--|--|--|--|
+|♜ | |♝ |♛ |♚ |♝ |♞ |♜ |
+| |♟ |♟ |♟ | |♟ |♟ |♟ |
+|♟ | |♞ | | | | | |
+| |♗ | | |♟ | | | |
+| | | | |♙ | | | |
+| | | | | |♘ | | |
+|♙ |♙ |♙ |♙ | |♙ |♙ |♙ |
+|♖ |♘ |♗ |♕ |♔ | | |♖ |
+
+
+```markdown
+|: Fruits \|\| Food :|||
+|:-------- |:-------- |:------------ |
+| Apple |: Apple :| Apple \
+| Banana | Banana | Banana \
+| Orange | Orange | Orange |
+|: Rowspan is 5 :||: How's it? :|
+|^^ A. Peach ||^^ 1. Fine |
+|^^ B. Orange ||^^ 2. Bad $I = \int \rho R^{2} dV$ |
+|^^ C. Banana || It's OK! ![example image][my-image] |
+```
+
+### Text Alignment
+Table cell can be set alignment separately.
+
+| \:Fruits || Food :|
+|:-------- |:------ |:-------- |
+| Apple | Banana | Orange |
+| Apple | Banana | Orange |
+
+
+| | Fruits\:: ||
+|:-------- |:------ |:-------- |
+| Apple | Banana | Orange |
+| Apple | Banana | Orange |
+
+
+|: \:Fruits :|| |: Food :||
+|:-------- |:------ |:-------- |:-------- |:------ |
+| Apple | Banana | Orange |: Strawberry :|
+| Apple & Banana || ^^ | Peach :||
+
+
+|: \:Fruits :|| |: Food :||
+| Apple | Banana | Orange |: Strawberry :|
+
+
+|: Fruits \|\| Food :|||
+|:-------- |:-------- |:------------ |
+| Apple |: Apple :| Apple \
+| Banana | Banana | Banana \
+| Orange | Orange | Orange |
+|: Rowspan is 5 :||: How's it? :|
+|^^ A. Peach ||^^ 1. Fine |
+|^^ B. Orange ||^^ 2. Bad $I = \int \rho R^{2} dV$ |
+|^^ C. Banana || It's OK! ![example image][my-image] |
+
+[my-image]: http://www.unexpected-vortices.com/sw/rippledoc/example-image.jpg "An exemplary image"
+