Skip to content

Extra paragraphs when convert LaTeX to HTML+MathML #1821

@rgaiacs

Description

@rgaiacs

Summary

In LaTeX, a empty line marks the end of one paragraph and the begin of another. This rule also apply for math environments like equation, align, ...

Steps to Reproduce

$ cat sample.tex
begin of paragraph
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
end of paragraph.
$ pandoc --version | head -n 1
pandoc 1.13.2
$ pandoc -f latex -t html --mathml sample.tex

Actual Results

Three paragraphs were created:

<p>begin of paragraph</p>
<p><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msup><mi>a</mi><mn>2</mn></msup><mo>+</mo><msup><mi>b</mi><mn>2</mn></msup><mo>=</mo><msup><mi>c</mi><mn>2</mn></msup></mrow><annotation encoding="application/x-tex">a^2 + b^2 = c^2</annotation></semantics></math></p>
<p>end of paragraph.</p>

Expected Results

Only one paragraph was created:

<p>begin of paragraph <math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msup><mi>a</mi><mn>2</mn></msup><mo>+</mo><msup><mi>b</mi><mn>2</mn></msup><mo>=</mo><msup><mi>c</mi><mn>2</mn></msup></mrow><annotation encoding="application/x-tex">a^2 + b^2 = c^2</annotation></semantics></math> end of paragraph.</p>

Aditional information

When I use $$ I get the correct behavior.

$ cat sample.tex
begin of paragraph
$$a^2 + b^2 = c^2$$
end of paragraph.
$ pandoc --version | head -n 1
pandoc 1.13.2
$ pandoc -f latex -t html --mathml sample.tex
<p>begin of paragraph <math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msup><mi>a</mi><mn>2</mn></msup><mo>+</mo><msup><mi>b</mi><mn>2</mn></msup><mo>=</mo><msup><mi>c</mi><mn>2</mn></msup></mrow><annotation encoding="application/x-tex">a^2 + b^2 = c^2</annotation></semantics></math> end of paragraph.</p>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions