|
its posible not remove html, head, body tags ? |
Answered by
xdan
Jun 26, 2026
Replies: 1 comment
|
By default Jodit edits an HTML fragment, so the |
0 replies
Answer selected by
xdan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By default Jodit edits an HTML fragment, so the
html/head/bodywrapper tags get stripped — that's expected for an inline editor. If you need to edit a whole document and keep those tags, turn oneditHTMLDocumentMode: true— it runs in an iframe and preserves the full document structure. Without that mode there's no way to keep the structural tags.