Hello, help me please:
where is the actual bulleted list creation code located?
_source folder has three subfolders: list, liststyle, listblock — but executed files have only listblock.
I would like insert <li><span>item text</span></li> instead of <li>item text</li>.
I use latest release of ckeditor
where is the actual bulleted list creation code located?
_source folder has three subfolders: list, liststyle, listblock — but executed files have only listblock.
I would like insert <li><span>item text</span></li> instead of <li>item text</li>.
I use latest release of ckeditor

Re: <li><span>item text</span></li> inst
Re: <li><span>item text</span></li> inst
Yes, possibly it's easier make it using css.. ( :before )
But why there is such difference beetween packed and source files?
Re: <li><span>item text</span></li> inst
li { color: black; }
not 100% sure which element decides the color of the marker, but if it's ul or ol you could just add:
ul, ol, li { color: black; }
hope that helps.
Re: <li><span>item text</span></li> inst
li { color: black; }
then circles aside list items will be black too
Re: <li><span>item text</span></li> inst
Re: <li><span>item text</span></li> inst
Many thanks you Man from Yekaterinburg, Elmash. )))
Re: <li><span>item text</span></li> inst
I'm trying to output <ol> ordered list but can't make CKEDITOR to insert <span> tags inside each <li> tag
Thanks
Re: <li><span>item text</span></li> inst
<li><span>some text</span></li>
But there is a bug in my code:
When we remove list style from text, spans aren't deleted.
If you make a solution, share it please.
My code is in attachment.
List plugin was modified.
Attachments:
Re: <li><span>item text</span></li> inst
Can u please tell me step by
Can u please tell me step by step where to embedd the code that u have given