WikiWiki
Various thoughts on wiki software
WikiJS
Used to run this site â see [[WikiJS]].
Outline
https://www.getoutline.com/
https://github.com/outline/outline
https://twitter.com/outlinewiki
Licensed as Business Source License â which I had not heard of. Documenting under [[Licensing]]
My fork: https://github.com/bmann/outline, setup to easily deploy to Heroku (not updated to recent head, yet). The app.json did get merged, so you should use the main version.
The other issue I had, with having mult... software built on NodeJS. Has great Deploy To HerokuDeploy To Heroku
[[Heroku]] has a âDeploy to Herokuâ button that lets people deploy apps using just a browser and the Heroku dashboard.
Creating a âDeploy to Herokuâ Button
The two base requirements are that the source code is on [[Github]] and that it contains an app.json file.
app.json schema is documented in the Heroku docs
support
- Home page https://wiki.js.org/
- OpenCollective Donations https://opencollective.com/wikijs
- Github https://github.com/Requarks/wiki
- Deploy via Heroku https://github.com/Requarks/wiki-heroku
An open source, modern and powerful wiki app built on Node.js, Git and Markdown. Can be maintained through a git repo (public or private, Github, Gitlab, etc) with standard git commits, as well as allowing edits through the front end, which writes back to the git repo.
Runs this site!
Tips
Keyboard Shortcuts
CMD + S on Mac (and iOS with external keyboard) will save the page you are working on.
Footnotes
Here is a footnote reference,[^1] and another.[^longnote]
[^1]: Here is the footnote.
[^longnote]: Here's one with multiple blocks.
Subsequent paragraphs are indented to show that they
belong to the previous footnote.
Inline Footnote
Here is an inline note.^[Inlines notes are easier to write, since
you don't have to pick an identifier and move down to type the
note.]
Bugs
Task list items break all other formatting
https://github.com/Requarks/wiki/issues/1908
- [ ] Task list [link](/path/to/page)
- [ ] Task next https://example.com
- [ ] Task the **third**
(I canât show this live because it screws up formatting for the whole rest of the page)
Moving files in Git
https://github.com/Requarks/wiki/issues/1358
Still trying to confirm this as I mass edit my files locally in git. May be âfixedâ if I know which cache button to purge.
Wish List
Wiki-linking of pages
Some way to indicate that a page doesnât exist yet, so that you can come back and create it. Double Square Brackets
might get used, or really, just single [square brackets]
which might be more native
Also, a global list of linked-to-but-not-created pages. I donât know what the common term for this is.
Tag-linking
#tips links to the tips tag automatically.
(Discourse does this for categories and tags)
Global link count
Count and store all of the external links. Have a page that shows all of the external links, how many times they are linked from a page
Backlinks
Show backlinks to pages that link to the current page
OEmbed support
Rich embeds of links
Check off âcheckmarkâ lists without full page edit
You can make checkmark lists, but you have to go into full edit mode to âcheck them offâ. Either a separate permission, or just link it to page permission and allow checking them off through the front end.
Global view of all un-checked and checked checkmarks, filterable by tag.
Allow for in-page view / edit of frontmatter
Currently, front matter is written back correctly to the git repo, but you need to use the UI to edit all of the options.
As an option, enable the ability to display the frontmatter inline.
For reference, the frontmatter includes:
---
title:
description:
published: true
date: 2020-05-20T04:02:00.507Z
tags: comma, separate, can use spaces, even
---
Mobile Editing Interface
Probably not going to happen with the full app, but there is a GraphQL endpoint.
The project itself could ship with /m/
, with a mobile optimized interface. Specifically for editing, adding notes, etc.
Syncing the entire git repo to your phone and searching / editing that âworksâ, too :)
RSS Feed
A feed of (public) updates
Bonus: per-tag feeds, per-âfolderâ feeds
Auto-save mode
I have several pages that I keep open, and edit over time, especially my worklog pages. Default to an auto-save mode, which saves automatically (at the very least, locally to the DB).