How do I add bullets (ul) inside a cell in Huxtable? #11631
Replies: 1 comment
-
This repository is about Quarto CLI not the third parties you are using to generate tables. For instance the error you showed is an R error that you likely can reproduce in a simple R session. Regarding your list inside cells, see https://quarto.org/docs/authoring/tables.html#grid-tables to write Markdown. Word document styling comes mostly if not entirely from the reference document. The styles have to be set as documented by Pandoc and Quarto, see https://quarto.org/docs/output-formats/ms-word-templates.html Or the library you are using needs to emit the proper OpenXML code with the font, etc. Finally, try to make your code small and reproducible when sharing it. We can't use your code as we don't have your reference document, we don't have your Lua filter, etc. You can share a small Git repository if you absolutely need multiple file to illustrate your issue. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Hello. I am trying to produce tables in which some cells contain unordered lists. I am trying to output to docx.
I tried the regular qmd tables, and flextable, and now I am in Huxtable.
The reason I chose to stick with Huxtable is because it provides better formatting options for my needs.
The one thing I am stuck on, which produces the error at the end of this post, is when I try to do bulleted lists inside a cell. Even when trying to use markdown, its failing to produce bulleted lists.
I tried different methods over the week and honestly I don't know what to do.
The code that is causing the issue: "information[2, 1] <- "- test 1 \n - test 2 \n - test 3""
Also, 2 small issues:
Code:
And this error happens:
Beta Was this translation helpful? Give feedback.
All reactions