mirror of
https://github.com/nginx/nginx.git
synced 2024-12-18 21:23:36 -06:00
20 lines
373 B
Plaintext
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> }
|
|
|
|
}
|