I am trying to print a title like :
There is 45% available
With 45% in bold like that, and I produced this code :
h4(paste0("There is ", strong(as.character(prctnage)), strong("%"), " available"))
Here is the output :
There is <strong>45<strong><strong>%<strong> available
Any suggestion?
