giterlizzi / dokuwiki-plugin-bootswrapper

Bootstrap Wrapper for DokuWiki
GNU General Public License v2.0
35 stars 22 forks source link

Inconsistent treatment of paragraphs in <col> #117

Open FloMiLe opened 4 years ago

FloMiLe commented 4 years ago

I use the Bootstrap Wrapper Plugin and noticed inconsistent behavior in grid columns.

In the MWE below, paragraphs 1 and 2 are not separated vertically, but there is vertical space between paragraphs 2 and 3, as one would expect between two paragraphs.

The reason for this seems to be that inside the <col> environment, only the first paragraph is not put into a <p> environment in the html output.

<grid><col sm="6">
Paragraph 1

Paragraph 2

Paragraph 3
</col>
</grid>

Maybe this is wanted behavior. Otherwise I hope this can be fixed in the plugin.

Meanwhile, is there a way I can make the first paragraph be a proper paragraph, such that vertical space is inserted between paragraphs 1 and 2?