Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hosted wiki using StackOverflow-like editing tools? [closed]

Tags:

markdown

wiki

wmd

We're starting developer documentation for one of our projects, and I'd like to set it up as a hosted wiki.

There will be lots of code samples, and the WMD/Prettify combination used here on StackOverflow is the simplest way I've seen to enter structured text (with headings, etc.) combined with automatically formatted code blocks.

Does anyone know of an existing hosted wiki service that uses this editing toolset, so we don't have to write our own (at least not right away)?

Thanks

like image 483
Herb Caudill Avatar asked Mar 04 '09 22:03

Herb Caudill


1 Answers

Many wiki engines are open source

Why not grab your favourite and add in the WMD editor?

Screwturn.eu is a nice C# wiki with a great extensibility model, and a great markup pipeline what should be simpl-ish to upgrade to WMD

Download v3 beta and look at /core/Formatter.cs and /core/FormattingPipeline.cs for the REGEX's to compose pages from WMD markdown

And /WebApplication/Editor.ascx for the editor custom control, which you can plug in WMD with some LH-RH code

like image 54
TFD Avatar answered Oct 07 '22 14:10

TFD