briandfoy / text-multimarkdown

Text::MultiMarkdown CPAN module
Other
1 stars 2 forks source link

UL/OL Lists not Rendered after Table element #3

Closed tedchuang closed 5 months ago

tedchuang commented 5 months ago

After rendering the HTML table, subsequent UL and OL lists are not rendered as lists, but shows up as plain text instead.

briandfoy commented 5 months ago

Can you give an example input and the output you get? Include the program you used to test it too.

I'm able to make new releases, but I'm mostly relying on people to submit patches to fix whatever they run into.

tedchuang commented 5 months ago

Sorry for the late response. Below is a sample MarkDown where the bullet list won't render after table has been rendered:

A Line of Text:

| Date | Time | Session |
| --- | --- | --- |
| May 4 | 3:20pm |  Q&A |

* Bullet point 1
* Bullet point 2
tedchuang commented 5 months ago

Nevermind :) Just read your source code for MultiMarkdown.pm and realized that the design intent is to have 2 blank lines (or EOF) as the end-of-whole-table marker. I can easily do that. No need to change anything. Thank you for the marvelous module!!

briandfoy commented 5 months ago

Glad it worked out, but it's not my module or code. I'm just taking care of it for now. :)