0

在 rmarkdown 文档中,如何在带有 htmltools 包的标签内使用 HTML 特殊字符?

如果我们在 rmarkdown 文档的 ar 块中写入类似这样的内容

htmltools::tags$th("μ")

我们得到:

<th>&amp;mu;</th>

代替

<th>&mu;</th>
4

2 回答 2

0

你能像这样解决它吗?

gsub("amp", "", htmltools::tags$th("&mu;"))
<th>&mu;</th>
于 2018-03-29T16:49:17.287 回答
0

这个htmltools包有一个功能HTML

require(htmltools)
require(magrittr)

"&mu;" %>% HTML %>% (tags$th) %>% as.character %>% cat

结果是:

<th>&mu;</th>
于 2020-06-29T12:33:36.560 回答