takacsot
takacsot

Reputation: 1767

Wiki rendering in GWT

Client side rendering is useful when we want to use wiki like syntax. Unfortunately I have not found any library which gives wiki syntax rendering in GWT client side.

Does anyone knows such an API/library?

Upvotes: 5

Views: 2330

Answers (3)

ostolop
ostolop

Reputation: 36

Also quite nice: http://code.google.com/p/gwtwiki/

Upvotes: 2

axelclk
axelclk

Reputation: 958

One of the XWiki developers writes in his blog, that they've developed a GWT based Wiki editor:

Upvotes: 1

Brian Clapper
Brian Clapper

Reputation: 26220

Sounds like you want a Javascript wiki rendering API. There are a couple Mediawiki (Wikipedia syntax) ones listed at http://www.mediawiki.org/wiki/Alternative_parsers.

There are also some Java-based wiki markup parsers; you could simply parse the wiki markup on the server side. Here are some examples:

Googling might turn up parsers for other wiki syntaxes, though Mediawiki seems to be pretty well-known.

Upvotes: 1

Related Questions