在 R sapply() 函数中使用内联 HTML

Use inline HTML in R sapply() function

我对编码和 R 非常菜鸟,所以如果这很愚蠢,我很抱歉。

在 shiny 中,我在 sidebarPanel 上 运行 多个 helpText,所以我尝试使用 sapply 来减少函数的重复。它工作得很好,除了我使用内联 HTML 的文本(因为 helpText 函数允许)。

你知道我如何在 sapply 中保留一些格式吗?这是我要更新的代码部分:

# Help text
        helpText(h3("FAQ")),
        lapply(
          c(
            "text",
            "more text"
          ),
          helpText
        ),
        helpText(h3("Title")),
        lapply(
          c(
            "words",
            "palabras",
            "mots",
            "I love cats"
          ),
          helpText
        ),

谢谢

嗯,我现在觉得有点傻...

为了后代:

        lapply(
          c(
            lapply("FAQ", shiny::h3),
            "text",
            "more text",
            lapply("Title", shiny::h3),
            "words",
            "palabras,
            "mots",
            "I love cats"
          ),
          helpText
        )