gpt4 book ai didi

html - 在 R Shiny Server 中风格化或格式化文本

转载 作者:太空狗 更新时间:2023-10-29 15:56:39 25 4
gpt4 key购买 nike

我有一个在 shiny 服务器上运行的应用程序,我想格式化一小部分文本,而无需管理整个页面的 css/html。

简单示例:

ui.r 中,我有几行我想要样式化的帮助文本。

sidebarPanel(
...
, helpText("<I>Can</I> <em>this</em> <strong>happen</strong>?")
)

给出:

# Current Output: 
<I>Can</I> <em>this</em> <strong>happen</strong>?

#desired Output:
Can this happen?

文本(可以理解)呈现为文字字符串。
是否有强制解析 HTML 的函数或命令?

最佳答案

使用这个:

sidebarPanel(
...
, HTML("<I>Can</I> <em>this</em> <strong>happen</strong>?")
)

顺便说一句,您甚至可以在服务器端使用 renderText 来构建完整的 HTML 输出字符串,该字符串可以根据您的输入进行更改。我经常用它来发布自动评论(例如,“最新的数据发布是 y......这是 y 的增加,相对于之前的发布......”)。

关于html - 在 R Shiny Server 中风格化或格式化文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19056186/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com