7

I would like to convert 100+ RTF files to Wiki Markup, but I can only find "Wiki to RTF" converters on the web and even here on StackOverflow.

I only need RTF --> Wiki Markup

Is there anything like this out there?

Ryan Kohn
  • 13,079
  • 14
  • 56
  • 81
hfrmobile
  • 1,213
  • 16
  • 16

3 Answers3

2

I simply asked the wrong question.

Did some research and found out that there is no Converter which converts RTF directly to a "Wiki format".

The "better" question: Save Word file as Wiki markup.

There are some approaches using Microsoft Word to save as .txt (Wiki markup):

Good luck!

hfrmobile
  • 1,213
  • 16
  • 16
1

It may be unwieldy with hundreds of files, but I have used wikEd to convert RTF and Word formatted text to wiki markup.

Wikedbox is a usable implementation of wikEd without installing it: http://www.appropedia.org/index.php?title=Appropedia:Wikedbox&action=edit

'''Wikedbox HELPS YOU CONVERT HTML (WEB FORMATTED CONTENT) TO MEDIAWIKI.'''. More instructions at [[Appropedia:WikEd]].

INSTRUCTIONS:

  1. If you're not in edit mode, click the "edit" tab now.

  2. Paste in your content.

  3. Click the red [W] to convert. (Middle row, second block from the left.)

  4. Your text is ready to be copied and used on your wiki page. (You may need to make further corrections.)

  5. '''DO NOT SAVE THIS PAGE'''. (You'll be blocked from doing so, anyway, unless you're an admin.)

Veridis
  • 111
  • 1
0

You can use Pandoc:

pandoc -s README -o example.rtf

This will convert your file to Markdown. I don't know which Wiki you want to use and If it understands Markdown, but I thinl you can also convert it to MediaWiki or other output formats (see the Pandoc User manual).

Sonson123
  • 10,879
  • 12
  • 54
  • 72
  • 1
    Thank you for hint. Even pandoc seems to be a great converter it is not what I am looking for. I like to convert **from** RTF **to** Wiki markup. pandoc only supports RTF as output format but I need it as input format. – hfrmobile Nov 15 '12 at 05:59
  • Ops sorry, you are right. Maybe you can write a script for OpenOffice or something like this. – Sonson123 Nov 15 '12 at 12:41