html template 기본
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl" xmlns:js="javascript:code"> <xsl:output method="html" indent="yes" omit-xml-declaration="yes"/> <msxsl:script implements-prefix="js" language="javascript"> <![CDATA[ // 자바 스크립트 구현 ]]> </msxsl:script> <xsl:template match="/"> HTML 구현 부분 </xsl:template> </xsl:stylesheet> |