gath
gath

Reputation:

Where can i get a wiki formatting widget for my django application?

Am looking for a wiki formatting widget for my django application, just like the one am using to type this question in stackoverflow?

Upvotes: 2

Views: 1236

Answers (3)

Mitar
Mitar

Reputation: 7090

You can check out my plugin for Django CMS, which adds Trac wiki syntax (with Trac macro support):

https://bitbucket.org/mitar/cmsplugin-markup-tracwiki

Upvotes: 0

Carl Meyer
Carl Meyer

Reputation: 126731

There are two parts to this question. If you're looking for the client-side Javascript WYSIWYG (or WYSIWYM) editor widget, that's unrelated to Django and WMD is a fine choice (though personally I prefer MarkItUp!).

If you're looking for the server-side (Django) piece of the equation, you might check into django-markitup.

Upvotes: 3

Lucas Jones
Lucas Jones

Reputation: 20203

Stack Overflow uses WMD for their editing. This is an editor for the Markdown language, which, while not strictly wiki markup, is quite close.
An un-obfuscated Stack Overflow-edition version of WMD is available here.

Upvotes: 2

Related Questions