I am using Pandoc 2.10.1 to convert from Markdown to DOCX. My source file has 2 tables in it that should be styled differently. I know that:
- The default style for tables is
Table, - I can provide a reference document where styles will be gleaned from
- I can modify the
Tablestyle in this style reference doc - I can add my own table styles to this reference document
What I can't figure out though is how one table should have the default Table style and the other should have MyGoodTable style. I have tried doing nothing to one table and surrounding the other in a fenced div like this:
:::{custom-style=MyTableStyle}
+-----+-----+-----+
| A | B | C |
+=====+=====+=====+
| 10 | 11 | 12 |
+-----+-----+-----+
| 20 | 21 | 22 |
+-----+-----+-----+
| 30 | 31 | 33 |
+-----+-----+-----+
:::
This didn't work, however, even though my reference document has MyTableStyle as a table style.
So, how can one table in a document have one style and another table in the same document have another style?
