From 04d8c1c578ec57a7d154e5285b3fe216c4fe2d7f Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Wed, 25 Oct 2023 20:37:27 -0600 Subject: Add internationalization --- _i18n/es/_posts/2017-12-15-table-example.md | 111 ++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 _i18n/es/_posts/2017-12-15-table-example.md (limited to '_i18n/es/_posts/2017-12-15-table-example.md') 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" + -- cgit v1.2.3