> * There is no "strong" element at all. That is, you forgot the
> namespace. May be it's something like:
> <command name="convert" parameter="[implicitElement]
> {http://www.w3.org/1999/xhtml}strong" />
>
> Note that XXE v3 is not namespace aware when the document being edited
> is conforming to a DTD (in such case "strong" is fine) and is
namespace
> aware in all the other cases (in such case, please specify
> "{namespace_URI_here}strong"}.
Adding the namespaces everywhere got me a long way, but I still have
problems in expressions that require patters, such as:
<match context="$selected" pattern="li" />
XXE does not accept
<match context="$selected" pattern="{http://www.w3.org/1999/xhtml}li" />
nor does the following seem to be valid:
<match context="$selected"
pattern="li[namespace::http://www.w3.org/1999/xhtml]" />
Any ideas?
Martin