R-Shiny应用程序中的重音标记

时间:2018-04-12 20:04:38

标签: r shiny accent-sensitive

我是新手,我正在尝试输入html标签以添加一些标题文本,但包含重音标记的单词(在西班牙语中非常常见)会导致错误。例如,下面的代码产生了我想要的东西:

library(shiny)
ui <- fluidPage(

  titlePanel("Titles"),
    sidebarLayout(
      sidebarPanel(  
        tagList(tags$h4("Geological Survey of Colombia"),
                tags$h2("Analitic Geochemistry Group"),
                tags$p("Text here"))),

    # Main panel for displaying outputs ----
    mainPanel()
    )
    )
server <- function(input, output) {}
shinyApp(ui, server)

但更改tags$h4("Geological Survey of Colombia")的{​​{1}}会导致错误:

tags$h4("Servicio Geológico Colombiano")

如何包含重音符号?

1 个答案:

答案 0 :(得分:2)

您可以使用UTF-8中的“使用编码保存”来解决此问题。我在重音符号上遇到了同样的问题并使用了本指南https://shiny.rstudio.com/articles/unicode.html