when i use user defined tags with uppercase node like "<AbC> test </AbC>" in ckeditor .On clicking source, it gets displayed as "<abc> test </abc>".please help me to get the expected output , which should be <AbC> test </AbC> and please guide me where the code should be modified.Thanking you
Wed, 11/13/2013 - 09:59
#1
CKEditor generates xhtml and
CKEditor generates xhtml and it abides by W3C standards. All tags are lowercase in xhtml standards. Sorry... :(
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
uppercase node convert into lowercase node
first i thank you for reply, in case if i use xml files which having tags like <aBc> test </aBc> , then if clicking on source currently getting output is <abc> test </abc>,
but must get output like <aBc> test </aBc> how can i do this?
CKEditor is not a XML editor,
CKEditor is not a XML editor, so this is just one of several problems that you'll find trying to use it that way. You'll have to get into the code and get your hands dirty to do the job.
uppercase node convert into lowercase node
suppose if use <aBc> test </aBc> within html file, how can get the same output like <aBc> test </aBc> in source?
<aBc> isn't a valid HTML tag,
<aBc> isn't a valid HTML tag, so any behavior (including removing it) is valid for a HTML editor.
uppercase node into lowercase node
yes, i know <aBc> is not html tag, suppose if use user defined tag <aBc> within html file then, how can i get ?
uppercase node into lowercase node
i use node in html file like <stRong> test </stRong>,
then if i click source on ckeditor i must get output same what i have given like <stRong> test </stRong>,
but gives output like <strong> test </strong> , how can i get the same output like <stRong> test </stRong> ?