(we are switching to a new theme,
don't worry if things look different for a while!)

Site Navigation

Plans

Massive Wiki Roadmap
Pier2Pier
Massive Wiki Builder redesign

For Testing

wiki link test page
Mistletoe parser test page
Mistletoe & the ampersand story

Edit on GitHub


Massive Wiki Wednesday, 2025-07-09

Topics

Announce MarkPub More Broadly

2025-07-08: Bill's notes for the next MWW

Bluesky comment notes:

Need a way for each page to know its file path in the repo.

Updating the dolce theme:

Alerting the website maintainer to theme updates

putting fs_path in _header.html

set fs_path before rendering the templates, then in _header.html:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% if fs_path != '' }
    <meta name="fs_path" content="{{ fs_path }}">
    {% endif %}
    <title>{{ page_title }}</title>

... etc.