Rich Text data field

3
When I use the Simple Rich text editor on my form, the enter (return) in the text is translated to an html "p" command. Is it possible to change this to "br"?
asked
1 answers
0

By doing a SHIFT+RETURN, the editor generates:

<p>example text<br /><br /></p>

I thought this should work, but it isn't. If you really want this, you need to remove manually all the paragraph tags. Why do you want this?

Edit after comment Wouter:

If you're sending emails, you could do the following:

  • Add css styling to your html mail and change the margin and padding of your paragraphs
  • Or, delete all or replace your

    tags with a microflow before sending your mail. We're actually using this in some of our projects.

answered