Skip to content

Commit d9f693d

Browse files
committed
cmark : fix XML by converting para to simpara tags via script
1 parent e93bd94 commit d9f693d

36 files changed

+296
-339
lines changed

reference/cmark/book.xml

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,45 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: bbfa9738785f054752e6cb565cd0a58e71015bc6 Maintainer: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: yes Maintainer: julionc -->
4-
5-
<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"> <?phpdoc extension-membership="pecl" ?>
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"> <?phpdoc extension-membership="pecl" ?>
65
<title>CommonMark</title>
76
<titleabbrev>CommonMark</titleabbrev>
87

98
<preface xml:id="intro.cmark">
109
&reftitle.intro;
11-
<para>
10+
<simpara>
1211
Esta extensión proporciona acceso a la implementación de referencia de CommonMark, una versión racionalizada de la sintaxis de Markdown con una especificación.
13-
</para>
12+
</simpara>
1413
<formalpara>
1514
<title>Parsing:</title>
1615
<para>
1716
La extensión CommonMark proporciona una sencilla API de análisis sintáctico:
18-
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-parse')/db:refsect1[@role='description']/descendant::db:methodsynopsis)" />
17+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-parse')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
1918
</para>
2019
</formalpara>
2120
<formalpara>
2221
<title>Rendering:</title>
2322
<para>
2423
La extensión CommonMark proporciona una sencilla API de renderizado que soporta múltiples formatos:
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)" />
24+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
25+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-html')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
26+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-xml')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
27+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-man')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
28+
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('function.commonmark-render-latex')/db:refsect1[@role='description']/descendant::db:methodsynopsis)"/>
3029
</para>
3130
</formalpara>
3231
<formalpara>
3332
<title>AST:</title>
3433
<para>
3534
La extensión CommonMark implementa la visitación de los objetos CommonMark\NNode:
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')])" />
35+
<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')])"/>
3736
</para>
3837
</formalpara>
3938
<formalpara>
4039
<title>CQL:</title>
4140
<para>
4241
La extensión CommonMark proporciona una interfaz para 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')])" />
42+
<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')])"/>
4443
</para>
4544
</formalpara>
4645
</preface>
@@ -76,7 +75,6 @@
7675
&reference.cmark.reference;
7776

7877
</book>
79-
8078
<!-- Keep this comment at the end of the file
8179
Local variables:
8280
mode: sgml

reference/cmark/commonmark.cql.xml

Lines changed: 6 additions & 8 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: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: no -->
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>La clase CommonMark\CQL</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
El CommonMark Query Language es un DSL para describir cómo viajar a través de un árbol de nodos CommonMark implementado como un analizador y un compilador para un pequeño conjunto de instrucciones, y una máquina virtual para ejecutar estas instrucciones.
17-
</para>
16+
</simpara>
1817
<formalpara>
1918
<title>Rutas:</title>
2019
<para>
@@ -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')])" />
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')])"/>
104103

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: 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: 4d17b7b4947e7819ff5036715dd706be87ae4def Maintainer: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: no -->
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>La interfaz 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

@@ -33,7 +33,7 @@
3333
</classsynopsisinfo>
3434
<!-- }}} -->
3535

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')])" />
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: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: no -->
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>La interfaz 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: 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: 4d17b7b4947e7819ff5036715dd706be87ae4def Maintainer: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: no -->
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 abstracto</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
Representa un nodo abstracto, esta clase abstracta final no está destinada a ser utilizada directamente por el desarrollador.
16-
</para>
16+
</simpara>
1717
</section>
1818
<!-- }}} -->
1919

@@ -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

@@ -116,7 +116,6 @@
116116
&reference.cmark.commonmark.node.accept;
117117

118118
</reference>
119-
120119
<!-- Keep this comment at the end of the file
121120
Local variables:
122121
mode: sgml

reference/cmark/commonmark.parser.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: 38ee86c3c030bc74362a7e5c185192ef8ad5a442 Maintainer: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: no -->
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 clase 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
Proporciona un analizador incremental como alternativa a la simple función de análisis de la 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')])" />
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')])"/>
3838

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: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: no -->
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>Construcción 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
Una string 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: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: no -->
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>Ejecución 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
Debe invocar la función CQL actual en el <parameter>root</parameter> dado,
1919
ejecutando el <parameter>handler</parameter> dado a la entrada de 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>el nodo raíz de un árbol</para>
30+
<simpara>el nodo raíz de un árbol</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

reference/cmark/commonmark/interfaces/ivisitable/accept.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: b124d58c8a6019512ce1f0ea5db007217f3f01f2 Maintainer: PhilDaiguille Status: ready -->
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: PhilDaiguille Status: ready -->
33
<!-- Reviewed: no -->
4-
<refentry xml:id="commonmark-interfaces-ivisitable.accept" 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-interfaces-ivisitable.accept">
55
<refnamediv>
66
<refname>CommonMark\Interfaces\IVisitable::accept</refname>
77
<refpurpose>Visitación</refpurpose>
@@ -22,9 +22,9 @@
2222
<varlistentry>
2323
<term><parameter>visitor</parameter></term>
2424
<listitem>
25-
<para>
25+
<simpara>
2626
Un objeto que implementa <classname>CommonMark\Interfaces\IVisitor</classname>
27-
</para>
27+
</simpara>
2828
</listitem>
2929
</varlistentry>
3030
</variablelist>
@@ -33,13 +33,12 @@
3333
<refsect1 role="seealso">
3434
&reftitle.seealso;
3535
<simplelist>
36-
<member><xref linkend="commonmark-interfaces-ivisitor.enter" /></member>
37-
<member><xref linkend="commonmark-interfaces-ivisitor.leave" /></member>
36+
<member><xref linkend="commonmark-interfaces-ivisitor.enter"/></member>
37+
<member><xref linkend="commonmark-interfaces-ivisitor.leave"/></member>
3838
</simplelist>
3939
</refsect1>
4040

4141
</refentry>
42-
4342
<!-- Keep this comment at the end of the file
4443
Local variables:
4544
mode: sgml

0 commit comments

Comments
 (0)