Using gt::md() renders different markdown syntax differently, depending upon where it is called.
Reprex:
---
format:
docx: default
---
```{r}
gt::gt(gt::sp500[1:10, ]) |>
gt::tab_header(gt::md("**Test header** <br>*__Test header two__*")) |>
gt::tab_footnote(gt::md("_Test footnote_ <br>*__Test footnote two__*"))
Note:
- The header respects the bold and italics, but not the line break
- The footer does not respect any of the markdown syntax
Versions:
- gt: 0.11.0.9000
- quarto: 1.5.57
Originally posted by @MikeJohnPage in #1067 (comment)
Using
gt::md()renders different markdown syntax differently, depending upon where it is called.Reprex:
Note:
Versions:
Originally posted by @MikeJohnPage in #1067 (comment)