6

I'm experimenting with Pandoc, in particular the markdown to RTF function. When I run the converter, the resulting RTF is opened in both Word and OpenOffice as plain text (where the text looks like RTF, but isn't treated as RTF). Converting to HTML works fine.

Here is the command I used:

pandoc -f markdown -t rtf -o sample.rtf sample.txt

Here is the short sample markdown I used:

# markdown example

- uli1

_em_

__strong__

Snippet of the contents of the created file:

{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 markdown example\par}

Running on Vista 32-bit, using Pandoc 1.6 (from http://code.google.com/p/pandoc/downloads/list).

Does anyone know what the problem might be?

Ash
  • 3,064
  • 4
  • 30
  • 31

2 Answers2

16

You just need to use the '-s' (or '--standalone') option when invoking pandoc. Otherwise pandoc produces a fragment, not a full standalone RTF file.

2

A rtf file should always begin with the magic number {\rtf (and end in a matching }). Make sure the generated file starts with that. If it doesn't either there is a bug in pandoc or you are missing a setting somewhere.

I tried the web version of Pandoc and it did not add {\rtf at the beginnig of the text.

Nifle
  • 34,998