Python Markdown Content Manager.
This is a desktop wiki tool to manage notes and files, inspired by TiddlyWiki classic.
The content is written in markdown.
Each page of markdown text is stored in separate files in the data/pages/ directory.
Non-markdown files can be "uploaded" and stored in the media/ directory structure.
Tested on Debian 13.
git clone https://github.com/ahernp/pmcm.gitcd pmcmpython3 -m venv venvCreate Python 3 virtual environment.source venv/bin/activateActivate Python virtual environment.pip install markdown legacy-cgicp -r initial_content/data .Create and populate data directories.cp -r initial_content/media .Create and populate media directories.python server.py -p 8088Start application/server.- Visit http://localhost:8088/ to use Wiki tool.
Read the Help page in wiki for instructions on how to use the tool.