I'm writing a Haskell
program to export data to docx
fileformat with pandoc
and by default, the font size is 12pt and I would like to set it to 10pt.
Is it possible with pandoc
to set the font size and the font name when exporting a pandoc document to docx
(and by extension to odt
) ?
Is it possible to modify these values just for a paragraph a not only for the whole document?
Note : My question is different from this one because I want to make a docx
document from a Haskell program and not from command line.