Glossary.xsl: 두 판 사이의 차이
새 문서: <?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;... |
편집 요약 없음 |
||
| (같은 사용자의 중간 판 4개는 보이지 않습니다) | |||
| 19번째 줄: | 19번째 줄: | ||
<thead> | <thead> | ||
<tr> | <tr> | ||
<th style="width: | <th style="width:9%">type</th> | ||
<th style="width: | <th style="width:9%">hanmun</th> | ||
<th style="width: | <th style="width:9%">korean</th> | ||
<th style="width: | <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> | ||
| 40번째 줄: | 40번째 줄: | ||
<td><xsl:value-of select="lemma/hanmun"/></td> | <td><xsl:value-of select="lemma/hanmun"/></td> | ||
<td><xsl:value-of select="lemma/korean"/></td> | <td><xsl:value-of select="lemma/korean"/></td> | ||
<td><xsl:value-of select="sense/@scope"/></td> | <td><xsl:value-of select="translate(sense/@scope, '_', ' ')"/></td> | ||
<td><xsl:value-of select="sense/definition"/></td> | <td><xsl:value-of select="sense/definition"/></td> | ||
<td><xsl:value-of select="sense/sense_note"/></td> | <td><xsl:value-of select="sense/sense_note"/></td> | ||
2026년 5월 10일 (일) 13:51 기준 최신판
<?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 match="term">
<xsl:value-of select="@type"/> <xsl:value-of select="lemma/hanmun"/> <xsl:value-of select="lemma/korean"/> <xsl:value-of select="translate(sense/@scope, '_', ' ')"/> <xsl:value-of select="sense/definition"/> <xsl:value-of select="sense/sense_note"/> </xsl:template> </xsl:stylesheet>