Edit complete documents or XHTML fragments
Through a parameter the integrator can specify whether the editor shall only export the content outside the body tag (<body>...</body>) of a page or document, e.g. when saving the editor's content to a web server.
If disabled, the editor will process content outside the page body and preserve header tags (e.g. <head>...</head>, <title>...</title>, etc.). Then edit-on Pro will deliver a complete XHTML page when exporting, e.g.:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"xhtml1-transitional.dtd">
<html>
<head>
<title></title>
</head>
<body>
Output when body-only parameter is disabled
</body>
</html>
If enabled, the editor will only process content inside the page body i.e. all content inside of the <body>...</body> tags of a page. Enabling this features is particular important when editing fragments of a web page, e.g.:
Output when body-only parameter is enabled