quasarframework / quasar-ui-qmarkdown

A Quasar UI App Extension to display inline markdown
https://quasarframework.github.io/quasar-ui-qmarkdown/
MIT License
157 stars 28 forks source link

Extra line breaks #385

Open Daemach opened 1 year ago

Daemach commented 1 year ago

I'm using this in a UMD application. The only change I made was wrapping a mustache with as below, but the table is no longer dense because it's wrapping the values with paragraph tags. The markdown itself seems to be working.

<span v-if="props.row.type == 'info' || props.row.type == 'done'" > <q-markdown>{{props.row.message}}</q-markdown> </span>

image

image

nucle commented 1 year ago

Hi, try to override the style of your p tag. BR