Oddµ: A minimal wiki
This program helps you run a minimal wiki. There is no version history. It's well suited as a secondary medium: collaboration and conversation happens elsewhere, in chat, on social media. The wiki serves as the text repository that results from these discussions.
If you're the only user and it just runs on your laptop, then you can think of it as a memex, a memory extender.
Oddµ can be used as a web server behind a reverse proxy such as Apache or it can be used as a static site generator.
When Oddµ runs as a web server, it serves all the Markdown files
(ending in .md) as web pages and allows you to edit them.
If your files don't provide their own title (# title), the file name
(without .md) is used for the title. Subdirectories are created as
necessary.
Oddµ uses a Markdown library
to generate the web pages from Markdown. Oddmu adds the following
extensions: local links [[like this]], hashtags #Like_This and
fediverse account links like @alex@alexschroeder.ch.
The lingua library detects languages in order to get hyphenation right.
The standard html/template library is used to generate HTML.
Documentation
This project uses man(1) pages. They are generated from text files using scdoc. These are the files available:
oddmu(1): This man page has a short introduction to Oddmu, its configuration via templates and environment variables, plus points to the other man pages.
oddmu(5): This man page talks about the Markdown and includes some examples for the non-standard features such as table markup. It also talks about the Oddmu extensions to Markdown: wiki links, hashtags and fediverse account links. Local links must use percent encoding for page names so there is a section about percent encoding. The man page also explains how feeds are generated.
oddmu-list(1): This man page documents the "list" subcommand which you can use to get page names and page titles.
oddmu-search(1): This man page documents the "search" subcommand which you can use to build indexes – lists of page links. These are important for feeds.
oddmu-search(7): This man page documents how search and scoring work.
oddmu-filter(7): This man page documents how to exclude subdirectories from search and archiving.
oddmu-replace(1): This man page documents the "replace" subcommand to make mass changes to the files much like find(1), grep(1) and sed(1) or perl(1).
oddmu-missing(1): This man page documents the "missing" subcommand to list local links that don't point to any existing pages or files.
oddmu-html(1): This man page documents the "html" subcommand to generate HTML from Markdown pages from the command line.
oddmu-static(1): This man page documents the "static" subcommand to generate an entire static website from the command line, avoiding the need to run Oddmu as a server. Also great for archiving.
oddmu-notify(1): This man page documents the "notify" subcommand to add links to hashtag pages, index and changes for a given page. This is useful when you edit the Markdown files locally.
oddmu-templates(5): This man page documents how the templates can be changed (how they must be changed) and lists the attributes available for the various templates.
oddmu-apache(5): This man page documents how to set up the web server for various common tasks such as using logins to limit what visitors can edit.
oddmu.service(5): This man page documents how to setup a systemd unit and have it manage Oddmu. “Great configurability brings great burdens.”
Building
go build
Running
The working directory is where pages are saved and where templates are loaded from. You need a copy of the template files in this directory. Here's how to start it in the source directory:
go run .
The program serves the local directory as a wiki on port 8080. Point your browser to http://localhost:8080/ to use it.
Bugs
If you spot any, contact me.
Source
If you're interested in making changes to the code, here's a high-level introduction to the various source files.
*_test.goare the test files; a few library functions are defined inwiki_test.go.*_cmd.goare the files implementing the various subcommands with matching namesaccounts.goimplements the webfinger code to fetch fediverse account link destinations with the URI provided by webfingeradd_append.goimplements the/addand/appendhandlersarchive.goimplements the/archivehandlerdiff.goimplements the/diffhandleredit_save.goimplements the/editand/savehandlersfeed.goimplements the feed for a page based on the links it listshighlight.goimplements the bold tags for matches when showing search resultsindex.goimplements the index of all the hashtagslanguages.goimplements the language detectionpage.goimplements the page loading and savingparser.goimplements the Markdown parsingscore.goimplements the page scoring when showing search resultssearch.goimplements the/searchhandlersnippets.goimplements the page summaries for search resultstemplates.goimplements template loading and reloadingtokenizer.goimplements the various tokenizers usedupload_drop.goimplements the/uploadand/drophandlersview.goimplements the/viewhandlerwatch.goimplements the filesystem notification watchwiki.goimplements the main function
If you want to change the markup rules, your starting point should be
parser.go. Make sure you read the documentation of Go
Markdown and note that it
offers MathJax support (needs a change to the view.html template so
that the MathJax Javascript gets loaded) and
MMark support, and it shows how
extensions can be added.
One of the sad parts of the code is the distinction between path and
filepath. On a Linux system, this doesn't matter. I suspect that it
also doesn't matter on MacOS and Windows because the file systems
handle forward slashes just fine. The code still tries to do the right
thing. A path that is derived from a URL is a path with slashes.
Before accessing a file, it has to be turned into a filepath using
filepath.FromSlashes and in the rare case where the inverse happens,
use filepath.ToSlashes. Any path received via the URL path uses
slashes and needs to be converted to a filepath before passing it to
any os function. Any path received within a path/filepath.WalkFunc
is a filepath and needs to be converted to use slashes when used in
HTML output.
If you need to access the page name in code that is used from a
template, you have to decode the path. See the code in diff.go for
an example.
References
Writing Web Applications provided the initial code for this wiki.