R语言_HTML_颜色字体
R语言的htmltools包包含了很多html的元素生成函数,比如,p,hr,strong,但是没有生成字体颜色的,因此写了一个记录下来。
color_font <- function(text,col){
span(text,style=sprintf("color:%s",col))
}
# example
require(htmltools)
require(magrittr)
color_font("text","red")%>%html_print()