demydd / pandoc

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

  should produce non-breaking space #78

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Related to issue 75.  Using native output shows that   is converted to
\160 in Haskell, but further conversion to other formats changes it to a
space.  Instead, it should produce a non-breaking space.

Original issue reported on code.google.com by iain.dal...@gmail.com on 12 Jul 2008 at 12:56

GoogleCodeExporter commented 8 years ago
The most recent version in SVN works properly:

% ./pandoc
hi there
<p
>hi there</p
>
% ./pandoc -w latex
hi there
hi~there
% ./pandoc -w man
hi there
.PP
hi\ there

etc.

Original comment by fiddloso...@gmail.com on 12 Jul 2008 at 1:26

GoogleCodeExporter commented 8 years ago
Sorry about that.  Thanks for fixing it anyhow :-)

Original comment by iain.dal...@gmail.com on 12 Jul 2008 at 2:27