You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@rich-iannone I do think there is a related issue mentioned in quarto-dev/quarto-cli#3340 with \QuartoMarkdownBase64{ as raw LaTeX in a cell, and gt not escaping it.
Currently fmt_passthrough with escape = FALSE seems to be the solution. Though I am wondering if this should be by cell and not column.
This makes me think about some tricks we using in knitr where using I() is a way to mark some content as not to be touched.
This will lead to
because gt does not handle the double quotes in the column and produce this
This was found in the context of
And maybe there should be a
fmt_raw_html()
function to mark the column content as HTML. I don't thinkdata-qmd
attributes is needed in that case.Though it would be a wrapper or alias for
fmt_passthrough()
with escaping opt-outThis works fine.
So this is really about
fmt_markdown
usage maybeRequires latest 1.4 pre-release
The text was updated successfully, but these errors were encountered: