Page 1 of 1

Error when using Saxon parse-html() Function

Posted: Mon May 04, 2015 6:12 pm
by hbfm
Hi everyone,

how can I use the Saxon processor parse-html() function in Oxygen?

http://www.saxonica.com/documentation/i ... parse-html

Image

Thank you for helping!

Re: Error when using Saxon parse-html() Function

Posted: Mon May 04, 2015 7:54 pm
by adrian
Hi,

saxon:parse-html() is a Saxon extension function. Note the saxon namespace prefix. You need to declare this namespace prefix in order to use it:

Code: Select all

xmlns:saxon="http://saxon.sf.net/"
Regards,
Adrian

Re: Error when using Saxon parse-html() Function

Posted: Tue May 05, 2015 10:19 am
by hbfm
Thank you, Adrian!