Table editing commands fully support HTML 4 tables.
Implicitly or explicitly selected element must be a td
or th
or the descendant of a td
or th
. Inserts a column before column containing specified cell.
A table cell is specified by implicitly or explicitly selecting the table cell or any of its descendants.
Implicitly or explicitly selected element must be a td
or th
or the descendant of a td
or th
. Inserts a column after column containing specified cell.
Implicitly or explicitly selected element must be a td
or th
or the descendant of a td
or th
. Deletes column containing specified cell.
Implicitly or explicitly selected element must be a td
or th
or the descendant of a td
or th
. Inserts a row before row containing specified cell.
Rows editing commands are enabled, not only by implicitly or explicitly selecting a table cell or any of its descendants, but also by explicitly selecting a table row.
Implicitly or explicitly selected element must be a td
or th
or the descendant of a td
or th
. Inserts a row before row containing specified cell.
Implicitly or explicitly selected element must be a td
or th
or the descendant of a td
or th
. Deletes row containing specified cell.
A a
element with one of href
, name
or id
attributes must be implicitly or explicitly selected. Scrolls to and selects opposite link end (if found). For example, will scroll to and select <a name="foo">
if the command has been invoked with <a href="#foo">
selected.
A a
element with a href
attribute must be implicitly or explicitly selected. Scrolls to and selects following similar link (if found). For example, will scroll to and select next <a href="#foo">
if the command has been invoked with <a href="#foo">
selected.
A a
element with a href
attribute must be implicitly or explicitly selected. Scrolls to and selects preceding similar link (if found). For example, will scroll to and select previous <a href="#foo">
if the command has been invoked with <a href="#foo">
selected.
Preview document being edited using currently running web browser. Web browser is started if it is not already running.
The temporary preview file (__PREVIEW__
document_name
.html
) is generated in the same directory than the document being edited.
On Linux, as configured by XMLmind, this command assumes that the mozilla
command is referenced in $PATH
. Of course, this can be changed by modifying the proper configuration file. For example, in order to use Firefox, suffice to add this snippet to your ~/.xxe/addon/customize.xxe
:
<property name="XXE_HTML_PREVIEW_COMMAND">/opt/firefox/firefox "%U"</property>