comparison docs/xsls/content.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:template = "section[@name and @title]" {
4 <a name="{@name}" /> <center><h4> !{@title} </h4></center>
5 !!;
6 }
7
8 X:template = "section[not(@name) and @title]" {
9 <center><h4> !{@title} </h4></center>
10 !!;
11 }
12
13 X:template = "section[not(@name) and not(@title)]" { !!; }
14
15 X:template = "para" { <p> !!; </p> }
16
17 X:template = "value" { <i> !!; </i> }
18
19 }