This is currently closed internal documentation for popcorn. Eventually it'll be refactored into use for public editing of the popcorn client/system.
You can also return to my website here.
Six releases to 1.0, each named after a U.S. city that claims to be “Popcorn Capital of the World;” You can click on the name to see the features added from that release.
popcorn is deployed as two distinct projects that work together: The client, which runs locally on your desktop PC, and the server, which runs on a machine that is exposed to the internet. The model used is thin client, thick server. The client has very little responsibility, and almost all the work is done on the server. Communication is done over http requests through Wordpress' REST API, and mostly it is client sending pull requests on the server for updates. This is not the lowest overhead approach, but it does offer a lot of flexibility and ease of implementation.
Conceptually popcorn works on a very simple model of: things, groups, and classes.
popcorn uses a specific subset/extension of Markdown it calls MarkedDown. In general, most of what you'd expect to work in Markdown does just that:
Only the #<space> format is supported. Underlining is not supported. Headings are limited to 5 depth, and are truncated at that point if longer.
Messages without a line-break (an empty message) are merged into a paragraph. You if you type: 'Hello,<enter>' that sends Hello, and then type: 'friend.<enter>' the messages will merge to become: 'Hello, friend.' Technical note: The client merges them into one on display, the server sees multiple messages. If you want to insert a line-break after a message, then you can either add a backslash at the end of a line or press ctrl+enter on the client.
Asterisks denote emphasis (and only asterisks). One is italic, two bold, three italic and bold.
To start a denoted, indented blockquote, start a paragraph with >(space). The formatting will continue until the next linebreak. Most formatting works under blockquotes. Nesting is not currently supported, but likely will be added.
Unordered lists are marked line by line with -(space) at the start. Ordered lists are marked with .(space). The first line without a - or . will start a new paragraph.
Every four spaces are one indent. Tab is not support and are stripped from content. Clients will create 4 spaces from the tab key.
Images (and later: Media) can be inserted as one message. The message must begin with !(space) and then a reference to the media is provided. This reference can be a URI/URL, or a reference into the server if it supports storing images. Any text following that is treated as a caption for the image.
Lines that begin with a dash - and have three or more such dashes in a row are considered a horizontal rule. Optional text following this code describes how to draw the rule.
Links can just be added as they appear with <> formatting: <https://popcorn.wishray.com>, or in [(display)](url/uri) format.