Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Text::MultiMarkdown to print from Perl to HTML.

I would like to create a table where some of the cells contain a few strings, each in a separate line within the cell (see "four five six" in the picture below).sample table

Can I do that?

share|improve this question

1 Answer

Text::MultiMarkdown passes some HTML straight through so you can use <br> tags:

print Text::MultiMarkdown::markdown(q{
Header 1 | Header 2
-------- | ---------------------------
One line | First line<br />Second line
});

Produces a table body like this:

<tr>
    <td>One line</td>
    <td>First line<br />Second line</td>
</tr>

Which seems to be what you're looking for.

share|improve this answer
1  
+1 using HTML directly is kind'a ugly but works... – David B Oct 21 '10 at 15:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.