HTML and XSLT #6
-
|
I have no knowledge of generating HTML from XSLT. What is the significance of using it and could this be expanded more in another example? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
In general, the larger the application, the smaller the size of the XML + XSL compared to the size of the HTML. Moreover, as the transformation of XML + XSL into HTML is done by the browser, the latter caches the XSL, so only XML is systematically transferred. |
Beta Was this translation helpful? Give feedback.
In general, the larger the application, the smaller the size of the XML + XSL compared to the size of the HTML. Moreover, as the transformation of XML + XSL into HTML is done by the browser, the latter caches the XSL, so only XML is systematically transferred.
Also, since XSL is XML, you can use all the tools dedicated to XML with XSL (syntax highlighting in an editor, for example).
But, honestly, it's only possible to use XSL with the Atlas toolkit because I am used to work with XSL since a very long time. Depending on the complexity of the application, it's probably better for someone who doesn't already know XSL to generate the HTML by hand or with one of the many other existing templa…