VimWiki
Also see z:tag/[[KnowledgeBase]] Vim Wiki does too much# Modern vim guis# Org Mode
TODO Setup
- Template for new pages (header filled out)
- Automatically insert creation and last modified dates (Perhaps https://github.com/inkarkat/vim-AutoAdapt will help)
- vimwiki’s documentation
- while vimwiki does support markdown, it cannot export markdowned wikis workaround
- Why links often break (vim’s conceal feature)
- TODO
:set nowrap
only on vimwiki files
Plugins
- export for markdown in ruby
- vim-zettel more Zettelkastenᛦ features (Reddit thread)
- vimwiki-sync automatically synchronize vim wiki with git
Archive
Old Export Script, used to import my old moinmoin wiki
- the following (z)shell script exports the latest data from a moinmoin wiki instance, make sure you are in Moin’s ‘data’ dir
EXPORT=export/ mkdir -p $EXPORT/pages/; for pagename in pages/*; do revision=$(cat $pagename/current); cat $pagename/revisions/$revision > export/$pagename.md; done