Title size in YAML section

I'd like to have the title of the rmarkdown (the one set in the YAML section) with two different font sizes. Would that be possbile for an html output? If yes, is it also possible for other output?
For example, would it be possible to have a different font size for "Hello" and a different one for "size" ?

"---
title: Hello everyone
---"

If you're using the HTML format, you can style the title like so:

---
title: "<span style='font-size: 30px'>Hello</style> <span style='font-size: 10px'>Everyone</style>"
output: html_document
---
3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.