ADSILLH notes

Topics

Technologies used to write these notes

Building the HTML version of the notes

Typing make will build the HTML version of the notes in ./build. The BUILDDIR environment variable may also be used to specify another build directory:

$ make BUILDDIR=/tmp/build

Editing the notes

The source may be found here. These notes use Markdown files that can be edited with any text editor. One may also use VimWiki if they so please:

let g:vimwiki_list = [
\ {
\ 'path': '/path/to/the/git/repository', 
\ 'path_html': '/path/to/the/build/directory',
\ 'custom_wiki2html': '/path/to/the/git/repository/vimwiki_to_html.sh',
\ 'css_name': '/dev/null',
\ 'syntax': 'markdown',
\ 'links_space_char': '-',
\ 'ext': '.md'
\ },
\]