如何格式化 Multimarkdown 表格?
我正在按照语法指南中表格部分下的指南编写 Multimarkdown 表格,并且我希望使用 Text::MultiMarkdown 将它们转换为 HTML。
它工作得很好,唯一的问题是我不知道如何控制表格的格式(显示边框、对齐标题、字体大小等)。
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).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是 HTML,因此您需要在
CSS
(< a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" rel="nofollow noreferrer">维基百科条目)。要使 MultiMarkdown 使用 CSS 文件,您需要向文档添加必要的元数据。从
Text::MultiMarkDown
文档:例如:
NB。请参阅
css: table.css
行。因此,上面的
$html
现在将包含指向table.css
的必要样式表链接。您只需在table.css
中定义 CSS 即可满足您的格式要求。例如: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::MultiMarkDown
docs:For eg:
NB. see the line
css: table.css
.So
$html
in above will now contain the necessary stylesheet link totable.css
. You just need to define the CSS intable.css
to meet your formatting requirements. For eg: