Gender Watchdog Blog

Exposing Institutional Capture in Korea Through Dongguk University: Academic Fraud, Racialized Sexual Violence, Institutional Betrayal and Press Gagging via Weaponized Defamation Law that Criminalizes Truthful Testimony

CLAUDE.md

Jekyll blog mirrored to GitHub Pages (blog.genderwatchdog.org), with posts also published on Bear Blog. Site config: _config.yml (kramdown/GFM, future: true).

Repo layout

Syncing a _posts/ file from its secret-files/blog-posts/ source draft

When asked to update a post to match its imported draft:

  1. Read both files and diff for new/changed sections, footnotes, and frontmatter.
  2. Port new content into the _posts/ version, preserving its established structure and citation style — do not just overwrite with the draft's frontmatter (see below).
  3. Convert any Markdown links in new content to the HTML link format required by _posts/ (see Formatting Rules).
  4. Update the title timestamp (see below).
  5. Extend tags in frontmatter if new sections introduce new named entities/topics. Only rewrite summary/meta_description if the update meaningfully changes the post's overall thrust.

_posts/ frontmatter carries more fields than the source draft (layout, slug, lang, tags, meta_description, bearblog_url, plus gh_pages_url/summary also present in the draft) — keep the _posts/ superset, only pulling in content changes from the draft, not its frontmatter shape.

Formatting rules

Title timestamp — every content update to a _posts/ file requires the YAML title to append/replace:

title: "Original Title (updated at YYYY-MM-DDTHH:MM:SSZ)"

Replace an existing (updated at ...) — never accumulate multiple. Use the user-supplied timestamp if given, otherwise date -u +"%Y-%m-%dT%H:%M:%SZ".

Links — never embed link text as Markdown [description](URL) where the description isn't the raw URL. Description precedes the link, URL fully visible. In _posts/ files specifically, use HTML (kramdown/GFM chokes on complex unescaped URLs in Markdown link syntax):

Description: <a href="URL">URL</a>

Do not