summaryrefslogtreecommitdiffhomepage
path: root/docs/xsls/content.xsls
blob: cf9dcf5b63894556c9b623f8583747c09a26ed90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
X:stylesheet {

X:template = "section[@name and @title]" {
    <a name="{@name}" /> <center><h4> !{@title} </h4></center>
    !!;
}

X:template = "section[not(@name) and @title]" {
    <center><h4> !{@title} </h4></center>
    !!;
}

X:template = "section[not(@name) and not(@title)]" { !!; }

X:template = "para" { <p> !!; </p> }

X:template = "value" { <i> !!; </i> }

}