Not a bug Editor gobbles up blank lines after editing an existing post

jauburn

Well-known member
When I edit an existing post to add blank lines (Shift-Enter), the editor gobbles up (removes) blank lines inserted previously in the same fashion.
 
We'll need specific steps to reproduce this. Shift-enter worked as expected for me.

If you need to setup a post in such a way to demonstrate it, please use the test forum.
 
If you are using a third party editor then you will need to seek support from the developer.
 
@jauburn
It looks I will have to update a few things on my addon (some XenForo code has been modified), but the XenForo html<=>Bb Code conversion for the list is no more accurate.

Both of the below lists will produce the same result (we're in Bb Code here):
Code:
List 1
[LIST]
[*]a

[*]b
[/LIST]

  • a
  • b

List 2

Code:
[LIST]
[*]a
[*]b
[/LIST]

  • a
  • b

To have a blank line in a list, the cariage return must be doubled
List 3:
Code:
[LIST]
[*]a


[*]b
[/LIST]
  • a

  • b
 
Top Bottom