hello.xsl

来自「《SVG开发实践》源代码」· XSL 代码 · 共 14 行

XSL
14
字号
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:template match="document">
	<html><body>
	<xsl:apply-templates/>
	</body></html>
	</xsl:template>
   <xsl:template match="content">
	<p>
		<xsl:value-of select="."/>
       </p>
   </xsl:template>
</xsl:stylesheet>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?