I'm using RStudio 0.98.1056 on Windows 7, and the development version of pander
as of today (I think it's 0.3.9).
I'm trying to use the knitr
->Markdown->.docx literate-programming workflow to create a table in Word. Some of the cells in the table contain two elements. In each of these cells, I'd like to render the first element in the normal base font, and the second in an italicized font that's just a bit smaller. The italics are easy but I'm having trouble with the font size change. In HTML I think using the <small>
tag would do it, but when I put this into my cells, pander
sanitizes it out (even when I knit to HTML instead of docx).
I gather that on-the-fly font size changes may not really be in the spirit of Markdown, but I'm trying to match an existing document style as closely as I can. Is what I want actually possible in this workflow?