본문 바로가기
Programming

XML과 XSL파일 연결방법 및 HTML5적용

by 혀코 2013. 12. 8.

시중에 나와있는 책들보고 XML혼자 공부를 시작하려는데, 첫 장부터 XML과 XSL연결 문제로 골머리 썩혔네요.

책을 기반으로 쓰임새만 보고 Youtube와 구글링을 통해 다음과 같은 코드를 얻었습니다.


같은 문제로 고민하는 분 있으시면 도움이 되었으면 좋겠습니다. :)


XML 파일


<?xml version="1.0" encoding="UTF-8"?>

<?xml-stylesheet type="text/xsl" version="2.0" href="htmlstyle.xsl"?>



XSL 파일


<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">

<xsl:output method="html" doctype-system="about:legacy-compat" encoding="UTF-8" indent="yes" />

<xsl:template match="/">


<html>

<head></head>

<body></body>

</html>


</xsl:template>

</xsl:stylesheet>



댓글