Glossary.xsl: 두 판 사이의 차이

Classics Wiki
편집 요약 없음
편집 요약 없음
19번째 줄: 19번째 줄:
                     <thead>
                     <thead>
                         <tr>
                         <tr>
                             <th style="width:8%">type</th>
                             <th style="width:9%">type</th>
                             <th style="width:8%">hanmun</th>
                             <th style="width:9%">hanmun</th>
                             <th style="width:8%">korean</th>
                             <th style="width:9%">korean</th>
                             <th style="width:16%">scope</th>
                             <th style="width:13%">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:07 판

<?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>