Before I invest too much time, is it possible to render a bullet list within a table cell? I know we can iterate over an simple array with a list of simple objects like [{"key": "Value"}], but when happens when we have a nested array in the value.
I tried a few different setups, one attempt was joining the array items into a string separated by commas and inserting <li>
tags from my front-end, but it seems the formatting doesn’t work with inline HTML styles—I just end up seeing the raw <li>
tags.
Is there a way to achieve this?
test.docx (19.5 KB)
{
"example": [
{
"title": "Silo: Fire",
"bullets": ["bullet 1", "bullet 2", "bullet 3"]
},
{
"title": "Silo: Wool",
"bullets": ["bullet 4", "bullet 5", "bullet 6"]
}
]
}