Glossary.xsl: 두 판 사이의 차이

Classics Wiki
새 문서: <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" indent="yes" encoding="utf-8"/> <xsl:template match="/"> <html lang="ko"> <head> <meta charset="UTF-8"/> <title>용어사전 스타일 쉬트</title> <style> table { border-collapse: collapse; width: 96%; margin-left:10px; margin-right-10px;...
 
편집 요약 없음
19번째 줄: 19번째 줄:
                     <thead>
                     <thead>
                         <tr>
                         <tr>
                             <th style="width:10%">type</th>
                             <th style="width:8%">type</th>
                             <th style="width:10%">hanmun</th>
                             <th style="width:8%">hanmun</th>
                             <th style="width:10%">korean</th>
                             <th style="width:8%">korean</th>
                             <th style="width:10%">scope</th>
                             <th style="width:16%">scope</th>
                             <th style="width:30%">definition</th>
                             <th style="width:30%">definition</th>
                             <th style="width:30%">sense_note</th>
                             <th style="width:30%">sense_note</th>

2026년 5월 3일 (일) 15:05 판

<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

   <xsl:output method="html" indent="yes" encoding="utf-8"/>
   <xsl:template match="/">
       
            
                
                용어사전 스타일 쉬트
                
            
            
                
                    
type hanmun korean scope definition sense_note
</xsl:template>
   <xsl:template match="term">

<xsl:value-of select="@type"/> <xsl:value-of select="lemma/hanmun"/> <xsl:value-of select="lemma/korean"/> <xsl:value-of select="sense/@scope"/> <xsl:value-of select="sense/definition"/> <xsl:value-of select="sense/sense_note"/> </xsl:template> </xsl:stylesheet>