|
HomePage
The main page
Featured IntroductionWikiwym is wiki syntax parser, implemented in JavaScript, which tries to reasonably imitate the Google Code wiki format. Code status: "It essentially works." See SupportedWikiSyntax for examples of what works and what doesn't. License: MIT Primary Features:
Primary Misfeatures:
Getting and Installing
You are of course free to "minimize" the source code using a minimizer of your choice, e.g. Douglas Crockford's jsmin. As of this writing (20100513), minimizing alone reduces the size by about 2/3rds. Compressing it using one of the common JS packers can reduce it by about 70-75%. Compressing it with gzip (or serving it from a server which supports such output compression), without minimizing/packing it first, provides only slightly smaller results than minimization, but can halve the size of a minified/packed copy. In my tests, the best reduction is obtained by combining minification and gzip (this is also more performant, as it requires no unpacking in the client JS engine). The source tree contains utility code for packing/minifying the parser. Ultra-mini HOWTOSee also: HowTo The source tree has several files, in various stages of completion. The core parser code is in GoogleWikiCodeParser.js, and is used like this: var g = new GoogleWikiCodeParser(); var html = g.parse( " ... wiki markup code ..." ); To see various live demos, visit out demo page: From there you can preview any Google Code-hosted project's wiki pages using our online preview tool. Related Works
|