Export formatsΒΆ

RDMO supports exports to certain formats using the excellent pandoc converter. The list of formats to select can be customized by changinng the EXPORT_FORMATS setting in your config/settings/local.py.

EXPORT_FORMATS = (
    ('pdf', _('PDF')),
    ('rtf', _('Rich Text Format')),
    ('odt', _('Open Office')),
    ('docx', _('Microsoft Office')),
    ('html', _('HTML')),
    ('markdown', _('Markdown')),
    ('mediawiki', _('mediawiki')),
    ('tex', _('LaTeX'))
)

The different formats supported by pando can be found on the pandoc homepage.