nginx/docs/xsls/content.xsls
2011-08-05 09:25:34 +00:00

20 lines
373 B
Plaintext

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> }
}