我生成了一个可React的对象,并使用saveWidget函数将其保存在一个HTML小部件中,我的代码如下所示:(qmd文件)
```{css, echo = FALSE}
.tag {
display: inline-block;
padding: 2px 12px;
border-radius: 15px;
font-weight: 600;
font-size: 12px;
overflow-y: scroll;
height:400px;
}
生成并保存表格:
library("reactable")
library("htmlwidgets")
reactable(data = data_table,
class = "tag",
filterable = TRUE,
rownames = FALSE,
selection = "multiple",
showPageSizeOptions = TRUE,
paginationType = "jump",
showSortable = TRUE,
highlight = TRUE,
resizable = TRUE,
rowStyle = list(cursor = "pointer"),
onClick = "select") %>%
saveWidget(.,
"table_name.html",
selfcontained = T,
libdir = "lib"
)
我的问题是:当我打开输出(“table_name.html”)时,有一个字符串“¶¶ ¶¶",我不知道如何删除它。
它看起来是这样的:
![](https://i.stack.imgur.com/mbgXY.png)
1条答案
按热度按时间gupuwyp21#
从评论中的链接来看,这在小部件中是固定的,但是,如果在不同的上下文中遇到这个问题,那么也可以使用Lua filter。
将上面的代码保存到一个文件中,比如
remove-pilcrow.lua
,并将其用于在R Markdown中或
在夸托。