demydd / pandoc

Automatically exported from code.google.com/p/pandoc
0 stars 0 forks source link

wrong line break after footnote #93

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Let the file "footnote.text" contains :

This is bla^[This is a footnote followed by a comma.], making visible the
footnote problem.

2. Call "pandoc -w latex footnote.text"

What is the expected output? What do you see instead?

Expected: Something like

This is bla%
\footnote{This is a footnote followed by a comma.}%
, making visible the footnote problem.

Instead we get:

This is bla%
\footnote{This is a footnote followed by a comma.}
, making visible the footnote problem.

Problem is that in the result there is a blank between the footnote number
and the comma.

What version of the product are you using? On what operating system?

pandoc --version
pandoc 1.0.0.1 -citeproc -highlighting

Copyright (C) 2006-7 John MacFarlane

Original issue reported on code.google.com by bras...@googlemail.com on 17 Oct 2008 at 3:57

GoogleCodeExporter commented 8 years ago
Fixed in r1469.
We now get:
\footnote{This is a footnote followed by a comma.},
making visible the footnote problem.

Original comment by fiddloso...@gmail.com on 19 Oct 2008 at 12:34