When I paste the below HTML in the RadEditor HTML View
<
PB_START
/><
strong
contenteditable
=
"false"
>-----PageBreak-----</
strong
><
PB_END
/>
Its generating the end tag for PB_START tag at wrong place. Please see below for the generated Html in the RadEditor corresponding to the above tag
<
pb_start
><
strong
contenteditable
=
"false"
>-----PageBreak-----</
strong
><
br
><
pb_end
></
pb_end
><
br
></
pb_start
>
But we are expecting the end tag for pb_start tag after the start tag of <pb_start> not after the </pb_end> tag.
Please find below expected HTML
<
pb_start
></
pb_start
><
strong
contenteditable
=
"false"
>-----PageBreak-----</
strong
><
pb_end
></
pb_end
>
Please let me know why the end tag </pb_start> is not after the <pb_start>. Is there any filter to resolve the above problem.