mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
eade044d53
* add xsl support * add tests for xsl * Fix grammar and spelling (#217) * update README.md with how install output features (#216) Informs the user that additional dependencies must be installed to use the output features. * Updated dependencies * Removed CONTRIBUTORS.md, use GitHub to see contributors * Removed logo * Updated CI * Update .travis.yml * Add Racket to the supported languages. (#219) * Add Racket to the supported languages. * Changed Racket test to count s-expr comments as code. * Add ReasonML (#213) https://reasonml.github.io/ https://github.com/github/linguist/blob/14fcd75773a49637b644ca60028ff245f617595f/lib/linguist/languages.yml#L3879 * Cleaned up unused var and made crate version clearer.
14 lines
261 B
XML
14 lines
261 B
XML
<!-- 13 lines 7 code 4 comments 2 blanks -->
|
|
<xsl:stylesheet
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<!--
|
|
Some comment
|
|
-->
|
|
|
|
<xsl:template match="A">
|
|
<xsl:value-of select="."/>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|