You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thanks for providing and maintaining this useful plugin!
Is your feature request related to a problem? Please describe.
Currently, my Quasar 2 / Vue 3 application uses external i18n files where we occasionally use string arrays to iterate over when printing long text with multiple paragraphs:
exportdefault{module: {heading: 'My Heading',blocktext: ['The first long paragraph. Lorem Ipsum dolor ...','The second long paragraph. Lorem Ipsum dolor ...','The third long paragraph. Lorem Ipsum dolor ...',]}}
First of all, thanks for providing and maintaining this useful plugin!
Is your feature request related to a problem? Please describe.
Currently, my Quasar 2 / Vue 3 application uses external i18n files where we occasionally use string arrays to iterate over when printing long text with multiple paragraphs:
This generates a paragraph for every array item.
Now we started enriching the blocktext content with markdown and introduced latest
next
version of this plugin in our app.We replaced the vue code with this:
However, this generates the following HTML structure:
Describe the solution you'd like
We'd like to be able to omit the QMarkdown wrapper div or at least be able to replace it with a span.
Describe alternatives you've considered
For the moment, we changed our code to omit our p wrapper:
However, this still creates a wrapper div around every paragraph which isn't very nice in terms of semantics.
And it doesn't work for things like this, where we want to add line breaks after each entry:
which generates the following HTML structure:
Generally speaking, we'd like to have more flexibility on how the plugin generates wrapper elements.
The text was updated successfully, but these errors were encountered: