Functions for rendering anything that has been identified as wikitext into the rendered form (usually HTML) of that wikitext.
Wikitext rendering is engaged when a tiddler is requested via a GET, when the negotiated MIME-type of the request is html, and when tiddler.type is either none or in the keys of the dictionary associated with the tiddlyweb.config[‘wikitext.type_render_map’].
When tiddler.type is none, the renderer named in tiddlyweb.config[‘wiktext_renderer’] is used. This is either a module in the tiddlyweb.wikitext package, or a module on sys.path.
When tiddler.type is something other than none, the renderer is determined by looking up the type in tiddlyweb.config[‘wikitext.type_render_map’]. The found value is a module of the same type described above.
The renderer module has a function render.
NOTE: This interface is experimental and subject to change.
Take a tiddler and render its wikitext to some kind of HTML format.