English 中文(简体)
Is there a WIKI (preferably .NET) that uses Markdown as it s editor? [closed]
原标题:

Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.

Closed 8 years ago.

I am looking to set up an internal wiki for our development/design team.

The key feature I am looking for is a very simple editor with revision history. Ideally, the uber-simple markup system StackOverflow.com uses (Markdown) would be great. One of the reasons for this is that we have non-technical people (managers, sales people, designers) who would benefit from a clean markup, not having to know HTML, and yet still be able to view revisions and make modifications easily.

I have tried ScrewTurn Wiki, but it seems its markup is very ugly, and thier latest WYSIWYG seems kinda buggy (keeps adding lines on revisions).

I would be willing to use a non-.NET solution if it provided a turn key solution. I would just prefer .NET since we are a .NET house.

最佳回答

Hamish Graham has created an ASP.NET Wiki Control with Markdown that you can download from Codeplex. You may be able to roll you own Wiki using this control just as Hamish Graham apparently has done on his blog.

问题回答

MediaWiki, the engine behind Wikipedia. It s PHP-based, but has the significant advantage of being familiar to a great many people.

MindTouch is OpenSource and .Net based. Ohloh has rated it as a 5. The source code is pretty tight, and there are connectors for SqlServer as well as a scripting language.

docuwiki for PHP is quite simple and has a similar-style editor. i am not sure about the .net alternative though.

Have you really had that big of an issue with ScrewTurn Wiki?

It seems very nice, compact and pretty simple.

There is another list of open source ASP.NET wiki engines here.

We just switched from ScrewTurn to Confluence. We just couldn t get non-technical people to adopt a wiki without Word-like editing. ScrewTurn s Visual editor is getting better, but we had set the Wiki Markup editor as the default to avoid issues.

Confluence isn t free, but it is rather cheap for a limited number of users. You can get the starter license for $10, which gives you their full featured wiki for 10 users (Same with JIRA too! Great for small teams).





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签