WeeWiki is a wee little wiki engine used to generate personal wikis and mind maps.
WeeWiki is written in a literate style, and requires Worgle to tangle files into C code. Make sure SQLite is installed as well.
WeeWiki can be built using the command “make”. It can then be installed using “sudo make install”.
To make a new page called foo:
weewiki add fooThen, set foo to be some text:
weewiki set foo "here is a page callled foo"If one desires to edit the page in the text editor
defined by $EDITOR:
weewiki edit fooSave + close, and this will update the page.
To upload this README to be the homepage:
weewiki push README.org indexBy default, wiki writes to _site/weewiki, so make sure
this directory exists:
mkdir -p _site/wikiList all the pages with
weewiki lsExport all the pages to HTML with:
weewiki exportAnd there now should be some HTML content written to
_site/wiki. Setting a http fileserver to point to _site,
one can see the generated homepage /wiki, and the foo page
/wiki/foo.