XSLT

Schimon Jehudah via Docutils-users <[email protected]> Thu, 24 Jul 2025 04:21:56 +0300
Newsgroups gmane.text.docutils.user
Message-ID <[email protected]>
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