mirror of https://github.com/python/cpython
Add support for some more markup that had slipped in.
Fixed a typo in a comment.
This commit is contained in:
parent
264e8186d5
commit
b6fa78930e
|
@ -38,6 +38,9 @@
|
||||||
<attribute name="href" optional="yes"/>
|
<attribute name="href" optional="yes"/>
|
||||||
<content/>
|
<content/>
|
||||||
</macro>
|
</macro>
|
||||||
|
<macro name="pep">
|
||||||
|
<attribute name="num"/>
|
||||||
|
</macro>
|
||||||
<macro name="rfc">
|
<macro name="rfc">
|
||||||
<attribute name="num"/>
|
<attribute name="num"/>
|
||||||
</macro>
|
</macro>
|
||||||
|
@ -455,6 +458,10 @@
|
||||||
<!-- not used anywhere, but it's a standard LaTeXism -->
|
<!-- not used anywhere, but it's a standard LaTeXism -->
|
||||||
<attribute name="spaces">visible</attribute>
|
<attribute name="spaces">visible</attribute>
|
||||||
</environment>
|
</environment>
|
||||||
|
<macro name="verbatiminput" ouptutname="input">
|
||||||
|
<attribute name="verbatim">yes</attribute>
|
||||||
|
<attribute name="source"/>
|
||||||
|
</macro>
|
||||||
|
|
||||||
<!-- Table markup. -->
|
<!-- Table markup. -->
|
||||||
<macro name="hline"/>
|
<macro name="hline"/>
|
||||||
|
@ -658,7 +665,10 @@
|
||||||
<attribute name="token"/>
|
<attribute name="token"/>
|
||||||
<content/>
|
<content/>
|
||||||
</macro>
|
</macro>
|
||||||
<macro name="token">
|
<macro name="token" outputname="grammartoken">
|
||||||
|
<content/>
|
||||||
|
</macro>
|
||||||
|
<macro name="grammartoken">
|
||||||
<content/>
|
<content/>
|
||||||
</macro>
|
</macro>
|
||||||
<macro name="orgroup">
|
<macro name="orgroup">
|
||||||
|
@ -766,7 +776,7 @@
|
||||||
</macro>
|
</macro>
|
||||||
<macro name="ulink">
|
<macro name="ulink">
|
||||||
<!-- order of the parameters makes this difficult;
|
<!-- order of the parameters makes this difficult;
|
||||||
we'll need to fix it up tp <ulink href="...">...</ulink>
|
we'll need to fix it up to <ulink href="...">...</ulink>
|
||||||
in docfixer.py.
|
in docfixer.py.
|
||||||
-->
|
-->
|
||||||
<child name="text"/>
|
<child name="text"/>
|
||||||
|
@ -831,6 +841,9 @@
|
||||||
<macro name="textasciitilde" outputname="">
|
<macro name="textasciitilde" outputname="">
|
||||||
<text>~</text>
|
<text>~</text>
|
||||||
</macro>
|
</macro>
|
||||||
|
<macro name="textbackslash" outputname="">
|
||||||
|
<text>\</text>
|
||||||
|
</macro>
|
||||||
<macro name="textbar" outputname="">
|
<macro name="textbar" outputname="">
|
||||||
<text>|</text>
|
<text>|</text>
|
||||||
</macro>
|
</macro>
|
||||||
|
|
Loading…
Reference in New Issue