Michael Weisheit wrote: > Ok, thanks for your answer. Would it theoretical be possible to write a > plugin to get xsl support or is there any other way?
CLARIFICATIONS: * XMLmind XML Editor is a CSS based XML editor. There is no way other than CSS to style what's being edited. * Syntex Serna (http://www.syntext.com/products/serna/) is the only XSL based XML editor in the world. However the XSLT stylesheet which is used to style the document being edited must be able to convert XML to *XSL-FO* (http://www.w3.org/TR/xsl/). * Modern web browsers nicely render XML files provided that the XML file contains this kind of processing instruction: <?xml-stylesheet type="text/xsl" href="MyStylesheet.xsl"?> In this case, an XSLT stylesheet such as MyStylesheet.xsl must be able to convert XML to *HTML* or XHTML. THE ANSWER TO YOUR QUESTION: XMLmind XML Editor allows third party programmers to write a custom *preview* command which would associate the document being edited to an XSLT stylesheet and then invoke the web browser to display this document. Writing such custom preview command should be pretty easy (for a programmer who knows XMLmind XML Editor). How to program XMLmind XML Editor is explained here: --> Writing a macro command: XMLmind XML Editor - Commands http://www.xmlmind.com/xmleditor/_distrib/doc/commands/index.html --> Writing commands in Java: XMLmind XML Editor - Developer's Guide http://www.xmlmind.com/xmleditor/_distrib/doc/dev/index.html

