I am wondering if the following this can be done:
For bullets, I am wondering if it is possible to simply use <li> and not include the <ul> tags around the elements.
Also, is it possible to use newlines instead of <br> tags to separate lines?
For bullets, I am wondering if it is possible to simply use <li> and not include the <ul> tags around the elements.
Also, is it possible to use newlines instead of <br> tags to separate lines?
RE: Bullet & Newlines customization
And any browser will ignore new lines when rendering content, so I don't think that you'll like it very much.
HTML code doesn't has to be undestable or beautiful, it's a structure of a document and with an editor like this one you don't have to ever take a look at the HTML code (although it's much better if you understand it)
RE: Bullet & Newlines customization
My database converts newlines into <br /> right now. The newline thing isn't too much of an issue for me, but in the database right now there are <li> and they don't look the same as making a new unordered list because the margin is off.
RE: Bullet & Newlines customization
And if you are already replacing \n for <br> then I think that you'll have to disable that replacement or do a first replacement after getting the output of the editor and turn <br> into \n so they will become <br> again after your second replacement (because the editor will output <br> for newlines)