mirror of
https://github.com/nginx/nginx.git
synced 2024-12-18 21:23:36 -06:00
62 lines
1.7 KiB
Plaintext
62 lines
1.7 KiB
Plaintext
X:stylesheet {
|
|
|
|
X:template = "section[@id and @name]" {
|
|
<a name="{@id}" /> <center><h4> !{@name} </h4></center>
|
|
!!;
|
|
}
|
|
|
|
X:template = "section[not(@id) and @name]" {
|
|
<center><h4> !{@name} </h4></center>
|
|
!!;
|
|
}
|
|
|
|
X:template = "section[not(@id) and not(@name)]" { !!; }
|
|
|
|
X:template = "para" { <p> !!; </p> }
|
|
|
|
X:template = "c-def" { <code> !!; </code> }
|
|
|
|
X:template = "c-func" { <code> !!; X:text{()} </code> }
|
|
|
|
X:template = "code" { <code> !!; </code> }
|
|
|
|
X:template = "command" { <code> !!; </code> }
|
|
|
|
X:template = "dq" {
|
|
X:text disable-output-escaping="yes" {&ldquo;}
|
|
!!;
|
|
X:text disable-output-escaping="yes" {&rdquo;}
|
|
}
|
|
|
|
X:template = "example" { <blockquote><pre> !!; </pre></blockquote> }
|
|
|
|
X:template = "emphasis" { <strong> !!; </strong> }
|
|
|
|
X:template = "header" { <code> !!; </code> }
|
|
|
|
X:template = "http-error" {
|
|
<i> X:text{"} !{@text} X:text{"} </i>
|
|
X:text{ (} !{@code} X:text{)}
|
|
}
|
|
|
|
X:template = "link[@id and not(@doc)]" { <a href="#{@id}"> !!; </a> }
|
|
X:template = "link" { <u> !!; </u> }
|
|
|
|
X:template = "list[@type='bullet']" { <ul> !!; </ul> }
|
|
X:template = "list[@type='enum']" { <ol> !!; </ol> }
|
|
X:template = "listitem" { <li> !!; </li> }
|
|
|
|
X:template = "list[@type='tag']" { <dl compact=""> !!; </dl> }
|
|
X:template = "tag-name" { <dt> !!; </dt> }
|
|
X:template = "tag-desc" { <dd> !!; </dd> }
|
|
|
|
X:template = "pathname" { <code> !!; </code> }
|
|
|
|
X:template = "argument" { <code><i> !!; </i></code> }
|
|
X:template = "parameter" { <code> !!; </code> }
|
|
|
|
X:template = "value" { <code> !!; </code> }
|
|
|
|
X:template = "var" { <code> !!; </code> }
|
|
}
|