I’m writing Multimarkdown tables following the guidelines under the Table section in the syntax guide, and I wish to convert them to HTML using Text::MultiMarkdown .
It works great, The only problem is I can’t figure out how to control the formatting of the tables (show borders, align headers, font size etc).
It’s HTML so you will need to do the extra formatting in
CSS(wikipedia entry).To make MultiMarkdown use a CSS file you will need to add the necessary metadata to the document. From the
Text::MultiMarkDowndocs:For eg:
NB. see the line
css: table.css.So
$htmlin above will now contain the necessary stylesheet link totable.css. You just need to define the CSS intable.cssto meet your formatting requirements. For eg: