comparison docs/xsls/module.xsls @ 3996:fc808f006ff4

skeleton for documentation processing
author Igor Sysoev <igor@sysoev.ru>
date Fri, 05 Aug 2011 09:25:34 +0000
parents
children ac19e755a132
comparison
equal deleted inserted replaced
3995:3ce6b8cedcb9 3996:fc808f006ff4
1 X:stylesheet {
2
3 X:output method="html" indent="no" encoding="utf-8";
4
5 X:strip-space elements = "*";
6
7 <!--
8 -- a current directory of a XSLT script is where the script is stored,
9 -- but not where XSLT processor has been started to run the script
10 -->
11 X:param XML = "'../xml'";
12
13 X:var LINK = "/module/@link";
14
15 X:include href = "directive.xslt";
16 X:include href = "content.xslt";
17
18
19 X:template = "/module" {
20 <html><head>
21
22 <title> !{@title} </title>
23
24 </head>
25 <body>
26
27 !!;
28
29 </body>
30 </html>
31 }
32
33 }