We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In XSLT, it is common to put empty lines between tags:
<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" indent="yes"/> <xsl:template match="/"> Article - <xsl:value-of select="/Article/Title"/> Authors: <xsl:apply-templates select="/Article/Authors/Author"/> </xsl:template> <xsl:template match="Author"> - <xsl:value-of select="." /> </xsl:template> </xsl:stylesheet>
But at this moment all old files collapse empty lines
Suggest to add new option like a
xmlEmptyLineBetweenTags: true, xmlEmptyLineBetweenTags: { exceptBounds: true }, // no empty line at the start and end of parent tag
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In XSLT, it is common to put empty lines between tags:
But at this moment all old files collapse empty lines
Suggest to add new option like a
The text was updated successfully, but these errors were encountered: