comment transformer un contenu xml en html en utilisant XST
-
Hello,
I'm using QT 6.6.4 and I'm trying to transform xml content into html using xsl file.
it seems that QXmlQuery can handle this natively. but it is deprecated in version 6 of QT or even removed.I'm looking for other native alternatives (with QT functions) to manage this without using an external library?
would you have some suggestions please?
thanks :)
-
Look at the QXml* and QDom* classes.
-
Look at the QXml* and QDom* classes.
@ankou29666 said in comment transformer un contenu xml en html en utilisant XST:
Look at the QXml* and QDom* classes
I fail to see xslt support in there.
You have to use an external library like libxslt.
-
@ankou29666 said in comment transformer un contenu xml en html en utilisant XST:
Look at the QXml* and QDom* classes
I fail to see xslt support in there.
You have to use an external library like libxslt.
@Christian-Ehrlicher
Thank,
I'm going to use an external library.