These tags must be included in all themes.
This tag is mandatory and must enclose all tags of type pagebody
, module
and mailform
in the theme file. Since these three tags are always used inside the HTML <body>
tag, usually the editor
is inserted immediately after the <body>
:
<html> ... <body><mesh:editor> ... body content... </mesh:editor></body> </html>
The purpose of this tag is to insert a <form>
element when the page is being edited. For that reason, you must also enclose any other <form>
tag into a ifnotediting
tag, so your forms won't be shown during page editing (HTML does not allow nested forms).
Inserts some headers found in the page. This tag is mandatory since it is needed when editing pages.
Attributes:
dropScripts
: if true
, <script>
tags are discarded (default false
);
dropStyles
: if true
, <style>
tags are discarded (default false
).