I am using this pseudo code to generate dynamic title on an flexdashboard in R
title_Var <- paste("Numurkah", format(max(Data$`Cutt Off daily`), "%d %b %Y"))
which works fine in the R console : Numurkah 09 Oct 2018
but when I use it inside the RMD file, (this code is inserted after I defined my variable in r)
---
title: \`r title_Var`\
---
it render in the HTML file as 09 Oct 2018 so YAML get my variable correctly, but it show only the date not the first text " Numurkah"
thanks for the reply, I found the correct answer
---
title: `r title_Var`
---