▸case-01 A developer writes a Markdown document using reference-style links such as `[documentation guide][missing-guide]`. They forgot to define the link target. Provide the missing link definition line to append at the end of the file pointing to `references/MISSING.md`. | pass→pass | 1,542 | 2,014 | +31% | 1 | 1 | 0% | 275 | 461 | +68% | 0 | 0 | — |
▸case-02 When building site documentation with MkDocs, missing document references in `mkdocs.yml` produce warnings but default to exit code 0. Provide the CLI command flag for `mkdocs build` that forces the process to fail with an error when dead links or missing page references occur. | pass→pass | 2,563 | 2,142 | -16% | 1 | 1 | 0% | 522 | 459 | -12% | 0 | 0 | — |
▸case-03 In a Python project using Sphinx, broken cross-references like `:ref:`missing-topic`` output warnings without interrupting CI runs. Provide the command-line flag for `sphinx-build` that converts warnings regarding missing target references into errors. | pass→pass | 7,595 | 4,904 | -35% | 1 | 1 | 0% | 1,260 | 970 | -23% | 0 | 0 | — |
▸case-04 A continuous integration step runs the `lychee` link checker CLI to verify relative file references such as `references/MISSING.md`. Because the runner has no external internet access, default network checks fail. Provide the CLI option for `lychee` to validate local missing file references while ignoring remote HTTP targets. | pass→pass | 3,027 | 3,809 | +26% | 1 | 1 | 0% | 555 | 848 | +53% | 0 | 0 | — |
▸case-05 A Docusaurus v3 site is silently building despite dead markdown links pointing to non-existent docs. Provide the JavaScript configuration property and value for `docusaurus.config.js` to force site compilation to crash whenever an unresolved doc reference is found. | pass→pass | 7,320 | 7,085 | -3% | 1 | 1 | 0% | 1,574 | 1,584 | +1% | 0 | 0 | — |
▸case-06 When generating Rust API docs with `cargo doc`, missing intra-doc item references like `[`NonExistentStruct`]` only emit warnings. Provide the inner crate attribute string to add to `src/lib.rs` that denies missing intra-doc link resolution warnings. | pass→pass | 2,333 | 2,366 | +1% | 1 | 1 | 0% | 453 | 502 | +11% | 0 | 0 | — |
▸case-07 TypeDoc builds HTML API docs for a TypeScript library, but broken link tags like `{@link MissingInterface}` render as plain text without throwing errors. Provide the JSON key-value configuration for `typedoc.json` to enforce build failure on invalid link references. | pass→pass | 4,640 | 5,956 | +28% | 1 | 1 | 0% | 1,018 | 1,201 | +18% | 0 | 0 | — |
▸case-08 A Markdown document has a section heading `## Special Features & Updates!`. A author attempts to link to it using `[Details](#special_features__updates)`, but the link breaks on GitHub. Provide the anchor fragment identifier following GitHub's standard slugification algorithm. | pass→pass | 10,238 | 5,485 | -46% | 1 | 1 | 0% | 2,220 | 1,178 | -47% | 0 | 0 | — |
▸case-09 In Sphinx reStructuredText, an author writes `:doc:`references/MISSING.rst`` to link to another document file. Sphinx fails to resolve this missing reference. Explain how the file extension should be formatted inside the `:doc:` directive target. | pass→pass | 4,784 | 3,809 | -20% | 1 | 1 | 0% | 964 | 767 | -20% | 0 | 0 | — |
▸case-14 A Markdown file includes a footnote reference `Here is a claim.[^missing]` but lacks the matching footnote text at the bottom. Provide the Markdown footnote definition string to append at the end of the file with the text 'See primary manual.' | pass→pass | 1,242 | 1,637 | +32% | 1 | 1 | 0% | 233 | 274 | +18% | 0 | 0 | — |
▸case-10 While running `markdownlint` against local documentation files, internal links pointing to non-existent heading anchors trigger lint errors. State the standard `markdownlint` rule identifier that validates link fragments and heading targets. | pass→pass | 2,241 | 2,941 | +31% | 1 | 1 | 0% | 429 | 553 | +29% | 0 | 0 | — |
▸case-11 Compiling a Markdown paper with Pandoc leaves unrendered citation markers like `[?smith2024]` in output PDFs because the BibTeX source is not supplied. Provide the command-line argument for Pandoc to specify the local `.bib` file. | pass→pass | 2,660 | 2,343 | -12% | 1 | 1 | 0% | 541 | 490 | -9% | 0 | 0 | — |
▸case-12 In a Git repository with files located at `docs/guides/setup.md` and `docs/references/MISSING.md`, `setup.md` references `MISSING.md`. The author wrote `[Guide](/references/MISSING.md)`, which breaks in local editors. Provide the portable relative Markdown link targeting `MISSING.md`. | pass→pass | 2,080 | 2,431 | +17% | 1 | 1 | 0% | 490 | 567 | +16% | 0 | 0 | — |
▸case-13 A repository housing project documentation includes referenced material via Git submodules. After a fresh clone, the submodule target directories are empty, causing missing file errors. Provide the Git command that initializes and checks out missing submodule contents recursively. | pass→pass | 2,339 | 2,042 | -13% | 1 | 1 | 0% | 463 | 422 | -9% | 0 | 0 | — |
▸case-15 An AsciiDoc compilation halts when encountering an `include::missing.adoc[]` directive for an optional file. Provide the header attribute setting for AsciiDoc to downgrade missing include files to warnings. | fail→pass | 14,020 | 11,072 | -21% | 1 | 1 | 0% | 2,780 | 2,300 | -17% | 0 | 0 | — |
▸case-16 In a JavaScript unified/remark pipeline for processing Markdown, which npm plugin package checks relative document references and flags dead internal anchors during compilation? | pass→pass | 3,754 | 4,527 | +21% | 1 | 1 | 0% | 702 | 854 | +22% | 0 | 0 | — |
▸case-17 In Visual Studio Code, authoring Markdown files often leads to broken relative links because link target checking is off. Provide the settings key in `.vscode/settings.json` that enables built-in Markdown link validation. | pass→pass | 3,902 | 4,208 | +8% | 1 | 1 | 0% | 731 | 916 | +25% | 0 | 0 | — |
▸case-18 A C++ project uses Doxygen and contains `@ref MissingClass` tags, but missing cross-reference warnings are suppressed. Which configuration key in `Doxyfile` ensures warnings are emitted for missing cross-references and missing item documentation? | pass→pass | 5,842 | 8,202 | +40% | 1 | 1 | 0% | 1,249 | 1,948 | +56% | 0 | 0 | — |
▸case-19 A user has an Obsidian note containing `[[references/MISSING]]`. Standard Markdown preview engines fail to parse this WikiLink format. Convert this to standard Markdown link syntax targeting `references/MISSING.md`. | pass→pass | 2,973 | 2,351 | -21% | 1 | 1 | 0% | 649 | 528 | -19% | 0 | 0 | — |
▸case-20 Write a Python docstring for a function `calculate_ratio(numerator: float, denominator: float) -> float` following the Google Python Style Guide conventions for parameter definitions. | pass→pass | 5,019 | 6,300 | +26% | 1 | 1 | 0% | 1,002 | 1,239 | +24% | 0 | 0 | — |
▸case-21 Provide the command-line interface invocation using Redoc tools to generate a single standalone static HTML file named `index.html` from an OpenAPI specification file named `openapi.yaml`. | fail→pass | 2,659 | 3,123 | +17% | 1 | 1 | 0% | 626 | 743 | +19% | 0 | 0 | — |
▸case-22 In a Python Sphinx documentation project, set the HTML theme to the standard Read the Docs theme by specifying the appropriate setting in `conf.py`. | fail→pass | 2,141 | 2,524 | +18% | 1 | 1 | 0% | 378 | 435 | +15% | 0 | 0 | — |
▸case-23 In Markdown, reference links can be written in shortcut form as `[MISSING]`. What reference definition line must be placed at the bottom of the file to resolve this shortcut reference to `references/MISSING.md`? | pass→pass | 2,533 | 2,299 | -9% | 1 | 1 | 0% | 482 | 432 | -10% | 0 | 0 | — |
▸case-24 A CI workflow runs `markdown-link-check` across repository docs. Provide the command-line flag for `markdown-link-check` to suppress detailed output and operate in quiet mode. | pass→pass | 2,878 | 2,162 | -25% | 1 | 1 | 0% | 590 | 441 | -25% | 0 | 0 | — |