Skip to content

Commit 55085da

Browse files
committed
cmark : fix XML by converting para to simpara tags via script
1 parent 650a413 commit 55085da

36 files changed

+348
-388
lines changed

reference/cmark/book.xml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: bbfa9738785f054752e6cb565cd0a58e71015bc6 Maintainer: Fan2Shrek Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: Fan2Shrek Status: ready -->
33
<!-- Reviewed: yes -->
4-
<book xml:id="book.cmark" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
4+
<book xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="book.cmark">
55
<?phpdoc extension-membership="pecl" ?>
66
<title>CommonMark</title>
77
<titleabbrev>CommonMark</titleabbrev>
88

99
<preface xml:id="intro.cmark">
1010
&reftitle.intro;
11-
<para>
11+
<simpara>
1212
Cette extension fournit un accès à l'implémentation de référence de CommonMark, une version rationalisée de la syntaxe Markdown avec une spécification.
13-
</para>
13+
</simpara>
1414
<formalpara>
1515
<title>Parsing:</title>
1616
<para>
1717
L'extension CommonMark fournit une API d'analyse simple:
18-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-parse')/db:refsect1[@role='description']/descendant::db:methodsynopsis)" />
18+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-parse')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
1919
</para>
2020
</formalpara>
2121
<formalpara>
2222
<title>Rendering:</title>
2323
<para>
2424
L'extension CommonMark fournit une API de rendu simple qui prend en charge plusieurs formats:
25-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render')/db:refsect1[@role='description']/descendant::db:methodsynopsis)" />
26-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-html')/db:refsect1[@role='description']/descendant::db:methodsynopsis)" />
27-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-xml')/db:refsect1[@role='description']/descendant::db:methodsynopsis)" />
28-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-man')/db:refsect1[@role='description']/descendant::db:methodsynopsis)" />
29-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-latex')/db:refsect1[@role='description']/descendant::db:methodsynopsis)" />
25+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
26+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-html')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
27+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-xml')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
28+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-man')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
29+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-latex')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
3030
</para>
3131
</formalpara>
3232
<formalpara>
3333
<title>AST:</title>
3434
<para>
3535
L'extension CommonMark fournit une interface pour les objets CommonMark\Node:
36-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('commonmark-node.accept')/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
36+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('commonmark-node.accept')/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
3737
</para>
3838
</formalpara>
3939
<formalpara>
4040
<title>CQL:</title>
4141
<para>
4242
L'extension CommonMark fournit une interface à CQL, CommonMark Query Language:
43-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('commonmark-cql.construct')/db:refsect1[@role='description']/descendant::db:constructorsynopsis[not(@role='procedural')])" />
43+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('commonmark-cql.construct')/db:refsect1[@role='description']/descendant::db:constructorsynopsis[not(@role='procedural')])"/>
4444
</para>
4545
</formalpara>
4646
</preface>
@@ -76,7 +76,6 @@
7676
&reference.cmark.reference;
7777

7878
</book>
79-
8079
<!-- Keep this comment at the end of the file
8180
Local variables:
8281
mode: sgml

reference/cmark/commonmark.cql.xml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 38ee86c3c030bc74362a7e5c185192ef8ad5a442 Maintainer: Fan2Shrek Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: Fan2Shrek Status: ready -->
33
<!-- Reviewed: yes -->
4-
5-
<reference xml:id="class.commonmark-cql" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
4+
<reference xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="class.commonmark-cql" role="class">
65

76
<title>The CommonMark\CQL class</title>
87
<titleabbrev>CommonMark\CQL</titleabbrev>
@@ -12,9 +11,9 @@
1211
<!-- {{{ CommonMark\Parser intro -->
1312
<section xml:id="commonmark-cql.intro">
1413
&reftitle.intro;
15-
<para>
14+
<simpara>
1615
Le CommonMark Query Language est un DSL pour décrire comment voyager à travers un arbre de nœuds CommonMark implémenté comme un analyseur et un compilateur pour un petit ensemble d'instructions, et une machine virtuelle pour exécuter ces instructions.
17-
</para>
16+
</simpara>
1817
<formalpara>
1918
<title>Chemins :</title>
2019
<para>
@@ -39,7 +38,7 @@
3938
<title>Sous-requêtes</title>
4039
<para>
4140
CQL peut être instruit de voyager en utilisant une sous-requête comme <literal>[/firstChild]</literal>. Par exemple, <literal>/firstChild/children[/firstChild]</literal> voyagera au premier nœud enfant de tous les enfants du premier nœud enfant.
42-
</para>
41+
</para>
4342
</formalpara>
4443
<formalpara>
4544
<title>Contraintes de boucle</title>
@@ -79,7 +78,7 @@
7978
<title>Notes d'implémentation</title>
8079
<para>
8180
Bien que CQL ait été implémenté en tant que partie de l'extension PHP CommonMark, il est séparé de PHP et n'utilise pas la machine virtuelle de PHP ou la représentation interne des valeurs.
82-
</para>
81+
</para>
8382
</formalpara>
8483
</section>
8584
<!-- }}} -->
@@ -100,10 +99,10 @@
10099
<!-- }}} -->
101100

102101
<classsynopsisinfo role="comment">&Constructor;</classsynopsisinfo>
103-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('commonmark-cql.construct')/db:refsect1[@role='description']/descendant::db:constructorsynopsis[not(@role='procedural')])" />
104-
102+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('commonmark-cql.construct')/db:refsect1[@role='description']/descendant::db:constructorsynopsis[not(@role='procedural')])"/>
103+
105104
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
106-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-cql')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
105+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-cql')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
107106
</classsynopsis>
108107
<!-- }}} -->
109108

@@ -115,7 +114,6 @@
115114
&reference.cmark.commonmark.cql.invoke;
116115

117116
</reference>
118-
119117
<!-- Keep this comment at the end of the file
120118
Local variables:
121119
mode: sgml

reference/cmark/commonmark.interfaces.ivisitable.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 4d17b7b4947e7819ff5036715dd706be87ae4def Maintainer: Fan2Shrek Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: Fan2Shrek Status: ready -->
33
<!-- Reviewed: yes -->
4-
<reference xml:id="class.commonmark-interfaces-ivisitable" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
4+
<reference xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="class.commonmark-interfaces-ivisitable" role="class">
55

66
<title>L'interface CommonMark\Interfaces\IVisitable</title>
77
<titleabbrev>CommonMark\Interfaces\IVisitable</titleabbrev>
@@ -11,9 +11,9 @@
1111
<!-- {{{ CommonMark\Interfaces\IVisitable intro -->
1212
<section xml:id="commonmark-interfaces-ivisitable.intro">
1313
&reftitle.intro;
14-
<para>
14+
<simpara>
1515

16-
</para>
16+
</simpara>
1717
</section>
1818
<!-- }}} -->
1919

@@ -32,8 +32,8 @@
3232
</ooclass>
3333
</classsynopsisinfo>
3434
<!-- }}} -->
35-
36-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-interfaces-ivisitable')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
35+
36+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-interfaces-ivisitable')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
3737
</classsynopsis>
3838
<!-- }}} -->
3939

@@ -44,7 +44,6 @@
4444
&reference.cmark.commonmark.interfaces.ivisitable.accept;
4545

4646
</reference>
47-
4847
<!-- Keep this comment at the end of the file
4948
Local variables:
5049
mode: sgml

reference/cmark/commonmark.interfaces.ivisitor.xml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 4d17b7b4947e7819ff5036715dd706be87ae4def Maintainer: Fan2Shrek Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: Fan2Shrek Status: ready -->
33
<!-- Reviewed: yes -->
4-
5-
<reference xml:id="class.commonmark-interfaces-ivisitor" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
4+
<reference xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="class.commonmark-interfaces-ivisitor" role="class">
65

76
<title>L'interface CommonMark\Interfaces\IVisitor</title>
87
<titleabbrev>CommonMark\Interfaces\IVisitor</titleabbrev>
@@ -12,9 +11,9 @@
1211
<!-- {{{ CommonMark\Interfaces\IVisitor intro -->
1312
<section xml:id="commonmark-interfaces-ivisitor.intro">
1413
&reftitle.intro;
15-
<para>
14+
<simpara>
1615

17-
</para>
16+
</simpara>
1817
</section>
1918
<!-- }}} -->
2019

@@ -51,7 +50,7 @@
5150
</fieldsynopsis>
5251

5352
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
54-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-interfaces-ivisitor')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
53+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-interfaces-ivisitor')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
5554
</classsynopsis>
5655
<!-- }}} -->
5756

@@ -63,7 +62,6 @@
6362
&reference.cmark.commonmark.interfaces.ivisitor.leave;
6463

6564
</reference>
66-
6765
<!-- Keep this comment at the end of the file
6866
Local variables:
6967
mode: sgml

reference/cmark/commonmark.node.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 4d17b7b4947e7819ff5036715dd706be87ae4def Maintainer: Fan2Shrek Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: Fan2Shrek Status: ready -->
33
<!-- Reviewed: yes -->
4-
<reference xml:id="class.commonmark-node" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
4+
<reference xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="class.commonmark-node" role="class">
55

66
<title>CommonMark\Node abstrait</title>
77
<titleabbrev>CommonMark\Node</titleabbrev>
@@ -11,9 +11,9 @@
1111
<!-- {{{ CommonMark\Node intro -->
1212
<section xml:id="commonmark-node.intro">
1313
&reftitle.intro;
14-
<para>
14+
<simpara>
1515
Représente un noeud abstrait, cette classe abstraite finale n'est pas destinée à être utilisée directement par le développeur.
16-
</para>
16+
</simpara>
1717
</section>
1818
<!-- }}} -->
1919

@@ -35,7 +35,7 @@
3535
<oointerface>
3636
<interfacename>CommonMark\Interfaces\IVisitable</interfacename>
3737
</oointerface>
38-
38+
3939
<oointerface>
4040
<interfacename>Traversable</interfacename>
4141
</oointerface>
@@ -99,7 +99,7 @@
9999
</fieldsynopsis>
100100

101101
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
102-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-node')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
102+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-node')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
103103
</classsynopsis>
104104
<!-- }}} -->
105105

@@ -117,7 +117,6 @@
117117
&reference.cmark.commonmark.node.accept;
118118

119119
</reference>
120-
121120
<!-- Keep this comment at the end of the file
122121
Local variables:
123122
mode: sgml

reference/cmark/commonmark.parser.xml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 38ee86c3c030bc74362a7e5c185192ef8ad5a442 Maintainer: Fan2Shrek Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: Fan2Shrek Status: ready -->
33
<!-- Reviewed: yes -->
4-
<reference xml:id="class.commonmark-parser" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
4+
<reference xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="class.commonmark-parser" role="class">
55

66
<title>La classe CommonMark\Parser</title>
77
<titleabbrev>CommonMark\Parser</titleabbrev>
@@ -11,9 +11,9 @@
1111
<!-- {{{ CommonMark\Parser intro -->
1212
<section xml:id="commonmark-parser.intro">
1313
&reftitle.intro;
14-
<para>
14+
<simpara>
1515
Fournit un analyseur incrémental en alternative à la simple fonction d'analyse de l'API Parsing
16-
</para>
16+
</simpara>
1717
</section>
1818
<!-- }}} -->
1919

@@ -34,10 +34,10 @@
3434
<!-- }}} -->
3535

3636
<classsynopsisinfo role="comment">&Constructor;</classsynopsisinfo>
37-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('commonmark-parser.construct')/db:refsect1[@role='description']/descendant::db:constructorsynopsis[not(@role='procedural')])" />
38-
37+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('commonmark-parser.construct')/db:refsect1[@role='description']/descendant::db:constructorsynopsis[not(@role='procedural')])"/>
38+
3939
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
40-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-parser')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
40+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.commonmark-parser')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
4141
</classsynopsis>
4242
<!-- }}} -->
4343

@@ -50,7 +50,6 @@
5050
&reference.cmark.commonmark.parser.finish;
5151

5252
</reference>
53-
5453
<!-- Keep this comment at the end of the file
5554
Local variables:
5655
mode: sgml

reference/cmark/commonmark/cql/construct.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 92cce8d39bc632922a29628046c704d70965c0e5 Maintainer: Fan2Shrek Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: Fan2Shrek Status: ready -->
33
<!-- Reviewed: yes -->
4-
<refentry xml:id="commonmark-cql.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
4+
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="commonmark-cql.construct">
55
<refnamediv>
66
<refname>CommonMark\CQL::__construct</refname>
77
<refpurpose>Construction de CQL</refpurpose>
@@ -13,9 +13,9 @@
1313
<modifier>public</modifier> <methodname>CommonMark\CQL::__construct</methodname>
1414
<methodparam><type>string</type><parameter>query</parameter></methodparam>
1515
</constructorsynopsis>
16-
<para>
16+
<simpara>
1717

18-
</para>
18+
</simpara>
1919

2020
</refsect1>
2121

@@ -25,16 +25,15 @@
2525
<varlistentry>
2626
<term><parameter>query</parameter></term>
2727
<listitem>
28-
<para>
28+
<simpara>
2929
Une chaîne de caractères CQL.
30-
</para>
30+
</simpara>
3131
</listitem>
3232
</varlistentry>
3333
</variablelist>
3434
</refsect1>
3535

3636
</refentry>
37-
3837
<!-- Keep this comment at the end of the file
3938
Local variables:
4039
mode: sgml

reference/cmark/commonmark/cql/invoke.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 41445b3d771660805270f52adf0e421aa20f12ab Maintainer: Fan2Shrek Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: Fan2Shrek Status: ready -->
33
<!-- Reviewed: yes -->
4-
<refentry xml:id="commonmark-cql.invoke" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
4+
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="commonmark-cql.invoke">
55
<refnamediv>
66
<refname>CommonMark\CQL::__invoke</refname>
77
<refpurpose>Execution de CQL</refpurpose>
@@ -14,10 +14,10 @@
1414
<methodparam><type>CommonMark\Node</type><parameter>root</parameter></methodparam>
1515
<methodparam><type>callable</type><parameter>handler</parameter></methodparam>
1616
</methodsynopsis>
17-
<para>
17+
<simpara>
1818
Doit invoquer la fonction CQL courante sur le <parameter>root</parameter> donné,
1919
exécutant le <parameter>handler</parameter> donné à l'entrée d'un <type>CommonMark\Node</type>
20-
</para>
20+
</simpara>
2121

2222
</refsect1>
2323

@@ -27,7 +27,7 @@
2727
<varlistentry>
2828
<term><parameter>root</parameter></term>
2929
<listitem>
30-
<para>le noeud racine d'un arbre</para>
30+
<simpara>le noeud racine d'un arbre</simpara>
3131
</listitem>
3232
</varlistentry>
3333
<varlistentry>
@@ -52,7 +52,6 @@
5252
</refsect1>
5353

5454
</refentry>
55-
5655
<!-- Keep this comment at the end of the file
5756
Local variables:
5857
mode: sgml

0 commit comments

Comments
 (0)