我在Shiny Dashboard中遇到了文本問題。我想保存原始文本格式,但閃亮刪除我想保留的空格。R中的空格Shiny
output$frame <- renderUI({
HTML(paste(
p(strong("Name and Surname:"),(" John Smith"))
)
)
})
tabItem(tabName = "aaa",
h2("bbb"),
fluidRow(
box(width = 6, solidHeader = TRUE, htmlOutput("frame"))
)
),
不幸的是我得到"Name and Surname: John Smith".
我希望有"Name and Surname: John Smith"
。
如何解決這個問題?
閃亮可能不會刪除任何東西。但是HTML中的空格不會被保留 - 這只是HTML工作的方式。使用CSS格式而不是空格來對齊元素。 –