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 sepa开发者_如何学Pythonrate line within the cell (see "four five six" in the picture below).

Can I do that?
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
});
It 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.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论