Metopedia

Metopedia Jekyll plugin and automation setup

This source package uses GitHub Pages-supported Jekyll plugins only by default:

The site also uses Liquid loops to auto-build:

Adding a new page

Create a new file in pages/, for example:

---
title: "New Research Page"
description: "Short search/SEO summary."
permalink: "/New_Research_Page/"
wiki_page: true
slug_name: "New_Research_Page"
wiki_categories: ["Research", "Metopedia"]
last_modified: "2026-04-25"
---

Page content here.

After commit/push, Jekyll rebuilds the site. The page appears in All Pages, Categories, search, and the sitemap without editing a manual index file.

GitHub Pages mode

For the most automation, set GitHub Pages to GitHub Actions and use .github/workflows/pages.yml.

If you keep the older Deploy from a branch mode, GitHub Pages will still build supported plugins, but the Actions workflow will not be used as the deployment source.

Unsupported plugins

Plugins such as custom wikilink generators, advanced backlink engines, or custom converters can be added later if the site is deployed through GitHub Actions. They should not be added to the managed branch-build mode unless they are listed as GitHub Pages-supported plugins.