nginx/docs/xsls/content.xsls

20 lines
373 B
Plaintext
Raw Normal View History

2011-08-05 04:25:34 -05:00
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> }
}