CRexsel Arguments
Use Default XSL Namespace (-n | --noXmlnsPrefix)

Most of the examples within this note use the explicit namespace prefix for the XSL elements. However it is possible to inhibit this and make a default namespace. For example

crexsel tangle.rxsl --noXmlnsPrefix

would produce

<?xml version="1.0" encoding="UTF-8"?> <!-- Produced using Rexsel compiler 1.0 Build 172 on 08/03/2024 01:54:42 --> <stylesheet xmlns="http://www.w3.org/1999/XSL/Transform" xmlns:aw="http://www.hsfr.org.uk/Schema/AntWeave" version="1.0"> <output method="text" version="1.0" omit-xml-declaration="yes" encoding="UTF-8"/> <param name="rootChunk"/> <param name="startCommentString" select="'//'"/> <param name="endCommentString" select="''"/>

instead of

<?xml version="1.0" encoding="UTF-8"?> <!-- Produced using Rexsel compiler 1.0 Build 172 on 08/03/2024 01:54:42 --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aw="http://www.hsfr.org.uk/Schema/AntWeave" version="1.0"> <xsl:output method="text" version="1.0" omit-xml-declaration="yes" encoding="UTF-8"/> <xsl:param name="rootChunk"/> <xsl:param name="startCommentString" select="'//'"/> <xsl:param name="endCommentString" select="''"/>
Copyright 2024 Hugh Field-Richards. All Rights Reserved.