Skip to content

Build

Build site.

build(options)

Build the site.

Source code in mccole/build.py
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
def build(options):
    """Build the site."""
    config = _load_configuration(options)
    if options.extra:
        config["extra_html"] = Path(options.extra).read_text(encoding="utf-8")
    env = Environment(loader=FileSystemLoader(config["templates"]))
    section_slugs, others = _find_files(config)

    ix_entries = []

    # Build home page
    _build_page(config, env, None, config["src"] / config["home_page"], ix_entries)

    # Build all section pages EXCEPT the index page (build it last)
    for slug in section_slugs:
        if slug == "index":
            continue
        _build_page(config, env, slug, config["order"][slug]["filepath"], ix_entries)

    # Build slides pages
    for entry in config.get("slides", []):
        src_file = entry["src_file"]
        if src_file.exists():
            _build_page(config, env, None, src_file, template_name=TEMPLATE_SLIDES)
        else:
            util.warn(f"slides source not found: {src_file}")

    # Build other files
    for filepath in others:
        _build_other(config, filepath)

    # Build index page last so all ix_entries from other pages are available
    if "index" in section_slugs and ix_entries:
        _build_index_page(config, env, ix_entries)
    elif "index" in section_slugs:
        _build_page(
            config, env, "index", config["order"]["index"]["filepath"], ix_entries
        )

    return config, env

_build_page(config, env, slug, src_path, ix_entries=None, template_name=TEMPLATE_PAGE)

Handle a Markdown file.

Source code in mccole/build.py
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
def _build_page(
    config, env, slug, src_path, ix_entries=None, template_name=TEMPLATE_PAGE
):
    """Handle a Markdown file."""
    if ix_entries is None:
        ix_entries = []

    content = src_path.read_text(encoding="utf-8")

    # Parse frontmatter
    post = fm.loads(content)
    metadata = {k: v for k, v in post.metadata.items() if k != "version"}
    body = post.content

    # Process shortcodes BEFORE markdown conversion
    body_with_links = f"{body}\n\n{config['links']}"
    processed = process_shortcodes(body_with_links, config, src_path, ix_entries)

    # Convert processed text to HTML
    raw_html = markdown(processed, extensions=util.MARKDOWN_EXTENSIONS)

    dst_path = _make_output_path(config, src_path, suffix=".html")
    _render_page(
        config, env, slug, src_path, dst_path, raw_html, metadata, template_name
    )

_build_index_page(config, env, ix_entries)

Build the index page from collected ix_entries.

Source code in mccole/build.py
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
def _build_index_page(config, env, ix_entries):
    """Build the index page from collected ix_entries."""
    slug = "index"
    src_path = config["order"][slug]["filepath"]

    # Generate index Markdown content from collected entries
    index_content = build_index_page(ix_entries, config)

    # Read frontmatter from existing index file if it exists
    if src_path.exists():
        post = fm.loads(src_path.read_text(encoding="utf-8"))
        metadata = {k: v for k, v in post.metadata.items() if k != "version"}
    else:
        metadata = {"title": "Index"}

    raw_html = markdown(index_content, extensions=util.MARKDOWN_EXTENSIONS)
    dst_path = _make_output_path(config, src_path, suffix=".html")
    _render_page(
        config, env, slug, src_path, dst_path, raw_html, metadata, TEMPLATE_PAGE
    )

_build_other(config, src_path)

Handle non-Markdown file.

Source code in mccole/build.py
118
119
120
121
def _build_other(config, src_path):
    """Handle non-Markdown file."""
    dst_path = _make_output_path(config, src_path)
    dst_path.write_bytes(src_path.read_bytes())

_collect_element_numbers(dst_path, doc, selector, prefix, kind, get_caption_node, labeler)

Number figure-like elements and return IDs.

Source code in mccole/build.py
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
def _collect_element_numbers(
    dst_path, doc, selector, prefix, kind, get_caption_node, labeler
):
    """Number figure-like elements and return IDs."""
    known = {}
    for num, node in enumerate(doc.select(selector), start=1):
        if "id" not in node.attrs:
            util.warn(f"{kind} {num} in {dst_path} has no ID")
            continue

        if not node["id"].startswith(prefix):
            util.warn(
                f"{kind} {num} ID {node['id']} in {dst_path} does not start with '{prefix}'"
            )
            continue

        caption_node = get_caption_node(doc, node, num, dst_path)
        if caption_node is None:
            continue

        known[node["id"]] = num
        labeler(caption_node, num, node)

    return known

_collect_figure_numbers(dst_path, doc)

Number figures and return IDs.

Source code in mccole/build.py
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
def _collect_figure_numbers(dst_path, doc):
    """Number figures and return IDs."""

    def get_caption_node(doc, node, num, dst_path):
        captions = node.select("figcaption")
        if len(captions) != 1:
            util.warn(
                f"figure {num} ID {node['id']} in {dst_path} has missing/too many figcaption"
            )
            return None
        return captions[0]

    def labeler(caption, num, node):
        caption.insert(0, f"Figure {num}: ")

    return _collect_element_numbers(
        dst_path, doc, "figure", "f:", "figure", get_caption_node, labeler
    )

_collect_table_numbers(dst_path, doc)

Number tables and return IDs.

Source code in mccole/build.py
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
def _collect_table_numbers(dst_path, doc):
    """Number tables and return IDs."""

    def get_caption_node(doc, node, num, dst_path):
        if "data-caption" not in node.attrs:
            util.warn(f"table {num} ID {node['id']} in {dst_path} has no data-caption")
            return None
        tables = node.select("table")
        if len(tables) != 1:
            util.warn(
                f"table {num} ID {node['id']} in {dst_path} has missing/too many tables"
            )
            return None
        return tables[0]

    def labeler(table, num, node):
        caption = doc.new_tag("caption")
        caption.string = f"Table {num}: {node['data-caption']}"
        table.insert(0, caption)

    return _collect_element_numbers(
        dst_path, doc, "div[id^='t:']", "t:", "table", get_caption_node, labeler
    )

_fill_element_numbers(dst_path, doc, prefix, known, text)

Fill in cross-reference numbers.

Source code in mccole/build.py
195
196
197
198
199
200
201
202
203
204
205
206
def _fill_element_numbers(dst_path, doc, prefix, known, text):
    """Fill in cross-reference numbers."""
    for node in doc.select("a[href]"):
        if not node["href"].startswith(prefix):
            continue

        key = node["href"].lstrip("#")
        if key not in known:
            util.warn(f"unknown cross-reference {key} in {dst_path}")
            continue

        node.string = f"{text} {known[key]}"

_find_files(config)

Find section files and other files.

Source code in mccole/build.py
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
def _find_files(config):
    """Find section files and other files."""
    slugs = set(config["order"].keys())

    excludes = {config["src"] / config["home_page"]}
    excludes |= {value["filepath"] for value in config["order"].values()}
    excludes |= {entry["src_file"] for entry in config.get("slides", [])}

    prune = {config["dst"], config["extras"], config["templates"]}
    skip_names = config["skip_names"]
    skip_patterns = config["skip_patterns"]

    others = set()
    for dirpath, dirs, files in config["src"].walk():
        # Prune directories before descending into them.
        dirs[:] = [
            d
            for d in dirs
            if Path(dirpath, d) not in prune
            and not str(d).startswith(".")
            and d not in skip_names
        ]
        for fname in files:
            if fname.startswith(".") or fname in skip_names:
                continue
            filepath = Path(dirpath, fname)
            if _is_interesting_file(config, excludes, skip_patterns, filepath):
                others.add(filepath)

    return slugs, others

_is_interesting_file(config, excludes, skip_patterns, filepath)

Is this file worth copying over?

Source code in mccole/build.py
241
242
243
244
245
246
247
248
249
250
def _is_interesting_file(config, excludes, skip_patterns, filepath):
    """Is this file worth copying over?"""
    if filepath in excludes:
        return False
    if filepath.samefile(config["config"]):
        return False
    for pattern in skip_patterns:
        if filepath.match(pattern):
            return False
    return True

_load_configuration(options)

Load configuration and combine with options.

Source code in mccole/build.py
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
def _load_configuration(options):
    """Load configuration and combine with options."""
    config_path = options.src / options.config
    config = tomli.loads(config_path.read_text(encoding="utf-8"))

    links = util.load_links(options.src)
    glossary = _load_glossary(options.src)

    home_page = options.root
    order = util.load_order(options.src, home_page)
    slides = util.load_slides(options.src)
    for entry in slides:
        entry["src_file"] = util.slides_src_file(options.src, entry["href"])

    mccole_config = config.get("tool", {}).get("mccole", {})
    book_repo = mccole_config.get("repo", _load_book_repo(options.src, home_page))
    book_title = mccole_config.get("title", _load_book_title(options.src, home_page))
    brand = mccole_config.get("brand", book_title)

    raw_skips = mccole_config.pop("skips", [])
    # Bare names (no path separators or wildcards) match any entry by name.
    # Everything else is matched against individual file paths.
    skip_names = {
        s for s in raw_skips if "/" not in s and "*" not in s and "?" not in s
    }
    skip_patterns = [s for s in raw_skips if s not in skip_names]

    return {
        "brand": brand,
        "book_repo": book_repo,
        "book_title": book_title,
        "config": config_path,
        "dst": options.dst,
        "extras": options.src / util.EXTRAS_DIR,
        "forma": options.forma,
        "glossary": glossary,
        "home_page": home_page,
        "links": links,
        "math": options.math,
        "order": order,
        "skip_names": skip_names,
        "skip_patterns": skip_patterns,
        "slides": slides,
        "src": options.src,
        "templates": options.src / TEMPLATE_DIR,
        "verbose": options.verbose,
        **mccole_config,
    }

_load_book_repo(src_path, home_page)

Extract the '[repo]' link from the home page.

Source code in mccole/build.py
303
304
305
306
307
308
309
310
def _load_book_repo(src_path, home_page):
    """Extract the '[repo]' link from the home page."""
    try:
        md = (src_path / home_page).read_text(encoding="utf-8")
        m = re.search(r"^\[repo\]:\s+(.+)$", md, re.MULTILINE)
        return m.group(1).strip() if m else ""
    except Exception:
        return ""

_load_book_title(src_path, home_page)

Extract the H1 title from the home page as the book title.

Source code in mccole/build.py
313
314
315
316
317
318
319
320
def _load_book_title(src_path, home_page):
    """Extract the H1 title from the home page as the book title."""
    try:
        md = (src_path / home_page).read_text(encoding="utf-8")
        m = re.search(r"^#\s+(.+)$", md, re.MULTILINE)
        return m.group(1).strip() if m else ""
    except Exception:
        return ""

_load_glossary(src_path)

Load glossary keys and terms.

Source code in mccole/build.py
323
324
325
326
327
328
def _load_glossary(src_path):
    """Load glossary keys and terms."""
    md = (src_path / GLOSSARY_PATH).read_text(encoding="utf-8")
    html = markdown(md, extensions=util.MARKDOWN_EXTENSIONS)
    doc = BeautifulSoup(html, "html.parser")
    return {node["id"]: node.decode_contents() for node in doc.select("span[id]")}

_render_page(config, env, slug, src_path, dst_path, raw_html, metadata, template_name)

Render, patch, and write one page.

Source code in mccole/build.py
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
def _render_page(
    config, env, slug, src_path, dst_path, raw_html, metadata, template_name
):
    """Render, patch, and write one page."""
    template = env.get_template(template_name)
    context = _make_context(config, slug, metadata)
    rendered_html = template.render(content=raw_html, **context)
    doc = BeautifulSoup(rendered_html, "html.parser")
    for func in _page_patchers():
        func(config, src_path, dst_path, doc)

    try:
        dst_path.write_text(str(doc), encoding="utf-8")
    except Exception as exc:
        print(f"unable to write {dst_path} because {exc}")
        sys.exit(1)

_fragment_patchers()

Patchers safe to run before link-rewriting and numbering (used by single-page build).

Source code in mccole/build.py
349
350
351
352
353
354
355
356
357
358
359
360
def _fragment_patchers():
    """Patchers safe to run before link-rewriting and numbering (used by single-page build)."""
    return [
        _patch_terms_defined,
        patch_inclusions,
        _patch_pre_code_classes,
        _patch_pre_accessibility,
        _patch_exercise_labels,
        _patch_th_scope,
        _patch_title,
        _patch_markdown_attribute,
    ]

_page_patchers()

Return the ordered list of DOM patch functions.

Source code in mccole/build.py
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
def _page_patchers():
    """Return the ordered list of DOM patch functions."""
    return [
        _patch_terms_defined,
        _patch_bibliography_links,
        _patch_figure_numbers,
        _patch_glossary_links,
        patch_inclusions,
        _patch_pre_code_classes,
        _patch_pre_accessibility,
        _patch_exercise_labels,
        _patch_table_numbers,
        _patch_th_scope,
        _patch_title,
        _patch_markdown_attribute,
        _patch_root_links,
    ]

_build_page_fragment(config, env, slug, src_path, ix_entries=None)

Build a page and return (metadata, dst_path, doc) without writing or link-patching.

Source code in mccole/build.py
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
def _build_page_fragment(config, env, slug, src_path, ix_entries=None):
    """Build a page and return (metadata, dst_path, doc) without writing or link-patching."""
    if ix_entries is None:
        ix_entries = []

    content = src_path.read_text(encoding="utf-8")
    post = fm.loads(content)
    metadata = {k: v for k, v in post.metadata.items() if k != "version"}
    body = post.content

    body_with_links = f"{body}\n\n{config['links']}"
    processed = process_shortcodes(body_with_links, config, src_path, ix_entries)
    raw_html = markdown(processed, extensions=util.MARKDOWN_EXTENSIONS)

    dst_path = _make_output_path(config, src_path, suffix=".html")
    template = env.get_template(TEMPLATE_PAGE)
    context = _make_context(config, slug, metadata)
    rendered_html = template.render(content=raw_html, **context)
    doc = BeautifulSoup(rendered_html, "html.parser")

    for func in _fragment_patchers():
        func(config, src_path, dst_path, doc)

    return metadata, dst_path, doc

_make_context(config, slug, metadata=None)

Make rendering context for a particular file.

Source code in mccole/build.py
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
def _make_context(config, slug, metadata=None):
    """Make rendering context for a particular file."""
    if metadata is None:
        metadata = {}
    order = config["order"]
    # Use a local variable name to avoid shadowing the parameter 'slug'
    context = {
        "lessons": [
            (s, entry["title"])
            for s, entry in order.items()
            if entry["kind"] == "lessons"
        ],
        "appendices": [
            (s, entry["title"])
            for s, entry in order.items()
            if entry["kind"] == "appendices"
        ],
        "slides": [
            (entry["href"], entry["title"]) for entry in config.get("slides", [])
        ],
    }

    if slug is None:
        prev_link = None
        prev_title = None
        next_link = None
        next_title = None
        context["chapter_number"] = None
        context["chapter_kind"] = None
    else:
        entry = order[slug]
        prev_link = entry["previous"]
        prev_title = None if prev_link is None else order[prev_link]["title"]
        next_link = entry["next"]
        next_title = None if next_link is None else order[next_link]["title"]
        context["chapter_number"] = entry["number"]
        context["chapter_kind"] = entry["kind"]

    # Merge frontmatter metadata into context (page-level title, syllabus, etc.)
    context.update(metadata)

    # Always expose book_repo, book_title, and brand (site-wide values from config)
    context.setdefault("brand", config.get("brand", context.get("book_title", "")))
    context.setdefault("book_repo", config.get("book_repo", ""))
    context.setdefault("book_title", config.get("book_title", ""))

    # Expose language code so the <html lang="..."> attribute can be set per book
    context.setdefault("lang", config.get("lang", "en"))

    # description falls back to book_title if not set in page frontmatter
    context.setdefault(
        "description", config.get("description", context.get("book_title", ""))
    )

    # Expose current slug so the nav template can mark the active page
    context["current_slug"] = slug
    context["extra_html"] = config.get("extra_html", "")
    context["forma"] = config.get("forma", False)
    context["math"] = config.get("math", False)

    return {"prev": (prev_link, prev_title), "next": (next_link, next_title), **context}

_make_output_path(config, src_path, suffix=None)

Generate output file path.

Source code in mccole/build.py
471
472
473
474
475
476
477
478
479
480
481
482
def _make_output_path(config, src_path, suffix=None):
    """Generate output file path."""
    if src_path.name in util.STANDARD_FILES:
        dst_path = config["dst"] / util.STANDARD_FILES[src_path.name] / "index.md"
    elif src_path.name == config["home_page"].name:
        dst_path = config["dst"] / "index.md"
    else:
        dst_path = config["dst"] / src_path.relative_to(config["src"])
    if suffix is not None:
        dst_path = dst_path.with_suffix(suffix)
    dst_path.parent.mkdir(parents=True, exist_ok=True)
    return dst_path

_make_root_prefix(config, path)

Create prefix to root for path.

Source code in mccole/build.py
485
486
487
488
489
490
def _make_root_prefix(config, path):
    """Create prefix to root for path."""
    relative = path.relative_to(config["dst"])
    depth = len(relative.parents) - 1
    assert depth >= 0
    return "./" if (depth == 0) else "../" * depth

Convert b: bibliography links.

Source code in mccole/build.py
493
494
495
def _patch_bibliography_links(config, src_path, dst_path, doc):
    """Convert b: bibliography links."""
    _patch_special_link(config, src_path, dst_path, doc, "b:", "bibliography", True)

_patch_figure_numbers(config, src_path, dst_path, doc)

Insert figure numbers.

Source code in mccole/build.py
498
499
500
501
def _patch_figure_numbers(config, src_path, dst_path, doc):
    """Insert figure numbers."""
    known = _collect_figure_numbers(dst_path, doc)
    _fill_element_numbers(dst_path, doc, "#f:", known, "Figure")

Convert g: glossary links.

Source code in mccole/build.py
504
505
506
def _patch_glossary_links(config, src_path, dst_path, doc):
    """Convert g: glossary links."""
    _patch_special_link(config, src_path, dst_path, doc, "g:", "glossary", False)

_patch_markdown_attribute(config, src_path, dst_path, doc)

Remove markdown='1' attribute.

Source code in mccole/build.py
509
510
511
512
def _patch_markdown_attribute(config, src_path, dst_path, doc):
    """Remove markdown='1' attribute."""
    for node in doc.select("[markdown]"):
        del node["markdown"]

_patch_exercise_labels(config, src_path, dst_path, doc)

Add aria-label to exercise sections so screen reader landmark navigation works.

Source code in mccole/build.py
515
516
517
518
519
def _patch_exercise_labels(config, src_path, dst_path, doc):
    """Add aria-label to exercise sections so screen reader landmark navigation works."""
    for node in doc.select("section.exercises"):
        if not node.get("aria-label"):
            node["aria-label"] = "Exercises"

_patch_pre_accessibility(config, src_path, dst_path, doc)

Make scrollable

 blocks keyboard-focusable and label them with their language.

Source code in mccole/build.py
522
523
524
525
526
527
528
529
530
531
def _patch_pre_accessibility(config, src_path, dst_path, doc):
    """Make scrollable <pre> blocks keyboard-focusable and label them with their language."""
    for node in doc.select("pre"):
        node["tabindex"] = "0"
        # Extract language from class like "language-python" → "python"
        classes = node.get("class", [])
        for cls in classes:
            if cls.startswith("language-"):
                node["data-lang"] = cls[len("language-") :]
                break

_patch_pre_code_classes(config, src_path, dst_path, doc)

Add language classes to

 elements.

Source code in mccole/build.py
534
535
536
537
538
def _patch_pre_code_classes(config, src_path, dst_path, doc):
    """Add language classes to <pre> elements."""
    for node in doc.select("pre>code"):
        cls = node.get("class", [])
        node.parent["class"] = node.parent.get("class", []) + cls

_patch_th_scope(config, src_path, dst_path, doc)

Add scope attributes to elements for screen reader table navigation.

Source code in mccole/build.py
541
542
543
544
545
546
547
548
def _patch_th_scope(config, src_path, dst_path, doc):
    """Add scope attributes to <th> elements for screen reader table navigation."""
    for node in doc.select("thead th"):
        if not node.get("scope"):
            node["scope"] = "col"
    for node in doc.select("tbody th"):
        if not node.get("scope"):
            node["scope"] = "row"

Convert @ links to relative path to root.

Source code in mccole/build.py
551
552
553
554
555
556
557
558
559
560
561
562
563
def _patch_root_links(config, src_path, dst_path, doc):
    """Convert @ links to relative path to root."""
    prefix = _make_root_prefix(config, dst_path)
    targets = (
        ("a[href]", "href"),
        ("img[src]", "src"),
        ("link[href]", "href"),
        ("script[src]", "src"),
    )
    for selector, attr in targets:
        for node in doc.select(selector):
            if node[attr].startswith("@/"):
                node[attr] = node[attr].replace("@/", prefix)

Patch specially-prefixed links.

Source code in mccole/build.py
566
567
568
569
570
571
572
573
574
575
def _patch_special_link(config, src_path, dst_path, doc, prefix, stem, change_text):
    """Patch specially-prefixed links."""
    for node in doc.select("a[href]"):
        if not node["href"].startswith(prefix):
            continue
        assert node["href"].count(":") == 1
        key = node["href"].split(":")[1]
        if change_text:
            node.string = key
        node["href"] = _make_root_prefix(config, dst_path) + f"{stem}/#{key}"

_patch_table_numbers(config, src_path, dst_path, doc)

Insert figure numbers.

Source code in mccole/build.py
578
579
580
581
def _patch_table_numbers(config, src_path, dst_path, doc):
    """Insert figure numbers."""
    known = _collect_table_numbers(dst_path, doc)
    _fill_element_numbers(dst_path, doc, "#t:", known, "Table")

_patch_terms_defined(config, src_path, dst_path, doc)

Insert terms defined where requested.

Source code in mccole/build.py
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
def _patch_terms_defined(config, src_path, dst_path, doc):
    """Insert terms defined where requested."""
    paragraphs = doc.select("p#terms")
    if not paragraphs:
        return
    if len(paragraphs) > 1:
        util.warn(f"{dst_path} has multiple p#terms")
        return
    para = paragraphs[0]

    keys = {
        node["href"] for node in doc.select("a[href]") if node["href"].startswith("g:")
    }
    if not keys:
        para.decompose()
        return

    keys = {k[2:] for k in keys}
    entries = [(key, config["glossary"].get(key, "UNDEFINED")) for key in keys]
    entries.sort(key=lambda item: item[1])
    para.append("Terms defined: ")
    for i, (key, term) in enumerate(entries):
        tag = doc.new_tag(
            "a", attrs={"class": "term-defined"}, href=f"@/glossary/#{key}"
        )
        tag.string = term
        if i > 0:
            para.append(", ")
        para.append(tag)

_patch_title(config, src_path, dst_path, doc)

Make sure the HTML title element is set.

Source code in mccole/build.py
615
616
617
618
619
620
621
622
623
624
625
626
def _patch_title(config, src_path, dst_path, doc):
    """Make sure the HTML title element is set."""
    if doc.title is None:
        util.warn(f"{dst_path} does not have <title> element")
        return
    h1 = doc.find("h1")
    if h1:
        doc.title.string = h1.get_text()
    else:
        slides_files = {entry["src_file"] for entry in config.get("slides", [])}
        if src_path not in slides_files:
            util.warn(f"{dst_path} lacks H1 heading")