Remove/Replace p tags in <li> with <span> #1963
-
Hi, List items are getting wrapped in a paragraph. I get that this is due to the I am querying if I could change the li tag to render a SPAN instead of a P tag or remove the p tags? HTML content from editor
Replace p with span
I should get rid of those p tags as I use the content in the editor to send emails. The p tags are creating additional spaces, which is not acceptable in my use case. Any ideas are much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
see #118 |
Beta Was this translation helpful? Give feedback.
-
It might be easier to solve this with CSS only? li p {
display: inline; /* so it behaves like a span */
margin: 0;
} Or, since you’re doing emails, as inline styles. |
Beta Was this translation helpful? Give feedback.
It might be easier to solve this with CSS only?
Or, since you’re doing emails, as inline styles.