From: Schimon J. <sc...@fe...> - 2025-07-24 01:22:28
|
Greetings. I am working to create a publishing system which is enntirely based on XML (Atom Syndication Format) with XSLT stylesheets to transform XML to XHTML. Preface ------- XSLT stylesheets are utilized instead of templating engines (e.g. Jinja2), in order to generalize theming systems for CMS and other types of publishing platforms. However, modifying of XSLT for navigation links is essential for this idea to succeed. Concern ------- While adding plain text, as is, should be workable, I would rather enclose text withing tag </xsl:text>, if possible. <xsl:text>This an</xsl:text> <xsl:text> </xsl:text> <a href="?xml">Atom Syndication Format</a> <xsl:text> </xsl:text> <xsl:text>document which was transformed to HTML with</xsl:text> <xsl:text> </xsl:text> <a href="/about/xslt">XSLT stylesheets</a> Questions --------- Is this possible to do with docutils? Would it applicable to ask for such feature? Kind regards, Schimon |