Set noClasses=false so Hugo outputs Chroma CSS classes instead of inline styles. 10-chroma.css now drives all syntax colors using ASW's --syntax-* tokens. Fixed remaining primitive leaks (--violet-4, --orange-3 → --syntax-keyword, --syntax-variable). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
66 lines
2.2 KiB
TOML
66 lines
2.2 KiB
TOML
baseURL = 'https://asw.trentuna.com/'
|
|
languageCode = 'en'
|
|
title = 'ASW — Agentic Semantic Web'
|
|
|
|
[params]
|
|
description = "Agentic Semantic Web — semantic HTML, data-* attributes, and CSS-only styling for the agentic era."
|
|
|
|
[taxonomies]
|
|
tag = "tags"
|
|
category = "categories"
|
|
|
|
# ── Navigation ──────────────────────────────────────────────────────
|
|
# Top nav is driven by data/nav.yml (editable via Decap CMS).
|
|
# Docs sidebar is auto-generated from content/docs/ subdirectories.
|
|
|
|
# ── Docs sidebar ─────────────────────────────────────────────────────
|
|
# Auto-generated from content/docs/ subdirectories.
|
|
# Each subdir with _index.md becomes an h3 section header.
|
|
# Pages within are listed by weight. No manual menu entries needed.
|
|
# To add a new section: mkdir content/docs/newsection/ + _index.md
|
|
# To add a new page: create .md in the right subdir with weight.
|
|
|
|
# ── Markup settings ───────────────────────────────────────────────────
|
|
[markup.goldmark.renderer]
|
|
unsafe = true # allow inline HTML in markdown (<mark>, <time>, etc.)
|
|
|
|
[markup.tableOfContents]
|
|
startLevel = 2
|
|
endLevel = 3
|
|
ordered = false
|
|
|
|
[markup.highlight]
|
|
noClasses = false
|
|
codeFences = true
|
|
guessSyntax = true
|
|
|
|
[build.buildStats]
|
|
enable = true
|
|
|
|
# ── Module mounts ────────────────────────────────────────────────────
|
|
# Map repo-level directories into Hugo's expected structure.
|
|
# Paths are relative to this file's directory (site/).
|
|
|
|
[[module.mounts]]
|
|
source = "content"
|
|
target = "content"
|
|
|
|
[[module.mounts]]
|
|
source = "layouts"
|
|
target = "layouts"
|
|
|
|
[[module.mounts]]
|
|
source = "static"
|
|
target = "static"
|
|
|
|
[[module.mounts]]
|
|
source = "../dist"
|
|
target = "static"
|
|
|
|
[[module.mounts]]
|
|
source = "../src/lab"
|
|
target = "static/lab"
|
|
|
|
[[module.mounts]]
|
|
source = "../examples"
|
|
target = "static/examples"
|