Skip to content

Commit 77f2a0c

Browse files
committed
cmark : fix XML by converting para to simpara tags via script
1 parent 912db81 commit 77f2a0c

36 files changed

Lines changed: 332 additions & 369 deletions

reference/cmark/book.xml

Lines changed: 13 additions & 14 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: leonardolara Status: ready --><!-- CREDITS: saviorenato, leonardolara -->
3-
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">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: saviorenato, leonardolara -->
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
Esta extensão fornece acesso à implementação de referência do CommonMark, uma versão racionalizada da sintaxe Markdown com uma especificação.
13-
</para>
13+
</simpara>
1414
<formalpara>
1515
<title>Análise:</title>
1616
<para>
1717
A extensão CommonMark fornece uma API de análise simples:
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>Renderização:</title>
2323
<para>
2424
A extensão CommonMark fornece API de renderização simples que suporta vários 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)" />
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
A extensão CommonMark implementa visitação para objetos 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
A extensão CommonMark fornece uma interface 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')])" />
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: 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: leonardolara Status: ready --><!-- CREDITS: leonardolara -->
3-
4-
<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">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: leonardolara -->
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">
55

66
<title>A classe CommonMark\CQL</title>
77
<titleabbrev>CommonMark\CQL</titleabbrev>
@@ -11,9 +11,9 @@
1111
<!-- {{{ CommonMark\Parser intro -->
1212
<section xml:id="commonmark-cql.intro">
1313
&reftitle.intro;
14-
<para>
14+
<simpara>
1515
CommonMark Query Language (CQL) é uma DSL para descrever como navegar por uma árvore de Nós CommonMark implementada como um analisador e compilador para um pequeno conjunto de instruções e uma máquina virtual para executar essas instruções.
16-
</para>
16+
</simpara>
1717
<formalpara>
1818
<title>Paths:</title>
1919
<para>
@@ -99,10 +99,10 @@
9999
<!-- }}} -->
100100

101101
<classsynopsisinfo role="comment">&Constructor;</classsynopsisinfo>
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')])" />
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')])"/>
103103

104104
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
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')])" />
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')])"/>
106106
</classsynopsis>
107107
<!-- }}} -->
108108

@@ -114,7 +114,6 @@
114114
&reference.cmark.commonmark.cql.invoke;
115115

116116
</reference>
117-
118117
<!-- Keep this comment at the end of the file
119118
Local variables:
120119
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: b124d58c8a6019512ce1f0ea5db007217f3f01f2 Maintainer: leonardolara Status: ready --><!-- CREDITS: leonardolara -->
3-
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">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: leonardolara -->
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>A 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

@@ -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: 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: leonardolara Status: ready --><!-- CREDITS: saviorenato -->
3-
4-
<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">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: saviorenato -->
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">
55

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

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

@@ -50,7 +50,7 @@
5050
</fieldsynopsis>
5151

5252
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
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')])" />
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')])"/>
5454
</classsynopsis>
5555
<!-- }}} -->
5656

@@ -62,7 +62,6 @@
6262
&reference.cmark.commonmark.interfaces.ivisitor.leave;
6363

6464
</reference>
65-
6665
<!-- Keep this comment at the end of the file
6766
Local variables:
6867
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: 41445b3d771660805270f52adf0e421aa20f12ab Maintainer: leonardolara Status: ready --><!-- CREDITS: saviorenato -->
3-
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">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: saviorenato -->
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 abstrato</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 um nó abstrato, este "abstrato final" não foi projetado para uso direto do programador.
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

@@ -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: leonardolara Status: ready --><!-- CREDITS: saviorenato -->
3-
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">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: saviorenato -->
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>A 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
Fornece um analisador incremental como alternativa à função simples da API de análise.
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: 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: 92cce8d39bc632922a29628046c704d70965c0e5 Maintainer: leonardolara Status: ready --><!-- CREDITS: leonardolara -->
3-
4-
<refentry xml:id="commonmark-cql.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: leonardolara -->
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>Construção 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
Uma 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: 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: 41445b3d771660805270f52adf0e421aa20f12ab Maintainer: leonardolara Status: ready --><!-- CREDITS: leonardolara -->
3-
4-
<refentry xml:id="commonmark-cql.invoke" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: leonardolara -->
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>Execução 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
Invoca a função CQL atual na raiz fornecida em <parameter>root</parameter>,
1919
executando o manipulador informado em <parameter>handler</parameter> na entrada para um <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>o nó raiz de uma árvore</para>
30+
<simpara>o nó raiz de uma árvore</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: 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: b124d58c8a6019512ce1f0ea5db007217f3f01f2 Maintainer: leonardolara Status: ready --><!-- CREDITS: leonardolara -->
3-
4-
<refentry xml:id="commonmark-interfaces-ivisitable.accept" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
2+
<!-- EN-Revision: 876a6a393125efc9d771cebdae1c02fec37c8ef7 Maintainer: leonardolara Status: ready -->
3+
<!-- CREDITS: leonardolara -->
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>Visitação</refpurpose>
@@ -22,9 +22,9 @@
2222
<varlistentry>
2323
<term><parameter>visitor</parameter></term>
2424
<listitem>
25-
<para>
25+
<simpara>
2626
Um objeto que implementa a interface <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)