Overview : 이미지 출력 하기
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0"     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">   <!-- 변수 $AirV 선언 및 초기화 -->   <xsl:variable name="AirV" select="'7C'" />   <xsl:template match="/">     <html>       <head>         <title>Airline Icon</title>       </head>       <body>         <!-- width와 height 속성을 이용해 이미지 크기를 25px로 지정 -->         <img src="{concat('https://test.net/Logos/AirlineIcons/', $AirV, '.png')}"              alt="Airline Icon" width="25" height="25"              style="width:25px; height:25px;" />       </body>     </html>   </xsl:template> </xsl:stylesheet> |