xrefcheck/README.md
2019-12-18 11:44:03 +02:00

5.3 KiB

Crossref-verifier

Build status

Crossref-verifier is a tool for verifying local and external references in repository documentation that is quick, easy to setup, and can be added to CI.

Output sample

Motivation

As the project evolves, links in documentation have a tendency to get broken. This is usually because of:

  1. File movements;
  2. Markdown header renames;
  3. Outer sites ceasing their existence.

This tool will help you to keep references in order.

Advantages

Comparing to alternative solutions, this tool tries to achieve the following points:

  • Quickness - local references are verified instantly even for moderately-sized repositories.
  • Easy setup - no extra actions required, just run the tool in the repository root. Both relative and absolute local links are supported out of the box.
  • Conservative verifier allows using this tool in CI, no false positives (e.g. on sites which require authentication) should be reported.

A comparison with other solutions

  • linky - a well-configurable verifier written in Rust, scans one file at a time and works good in pair with system utilities like find. This tool requires some configuring before it can be applied to a repository or added to CI.
  • awesome_bot - a solution written in Ruby that can be easily included in CI or integrated into GitHub. Its features include duplicated URLs detection, specifying allowed HTTP error codes and reporting generation. At the moment of writting, it scans only external references and checking anchors is not possible.
  • remark-validate-links and remark-lint-no-dead-urls - highly configurable Javascript solution for checking local and remote links resp. It is able to check multiple repositores at once if they are gathered in one folder. Being written on JavaScript, it is fairly slow on large repositories.
  • markdown-link-check - another checker written in JavaScript, scans one file at a time. Supports mailto: link resolution.
  • url-checker - GitHub action which checks links in specified files.
  • broken-link-checker - advanced checker for HTML files.

Build instructions

Run stack install to build everything and install the executable.

CI and nix

To build only the executables, run nix-build. You can use this line on your CI to use crossref-verifier:

nix run -f https://github.com/serokell/crossref-verifier/archive/master.tar.gz -c crossref-verify

Our CI uses nix-build crossref-verifier.nix to build the whole project, including tests and Haddock. It is based on the haskell.nix project. You can do that too if you wish.

Details

There is a bug which causes us to put some redundancy into Nix files:

  1. nix/sources.json lists all such dependencies that we obtain using git. It specifies concrete git revisions and SHA256 checksums.
  2. crossref-verifier.nix lists all such dependencies as well, but without revisions.

As a consequence, you may have to update these files when you update stack.yaml. You can use niv update to update nix/sources.json.

Usage

To find all broken links in a repository, run from within its folder:

crossref-verify

To also display all found links and anchors:

crossref-verify -v

For description of other options:

crossref-verify --help

Configuring

Configuration template (with all options explained) can be dumped with:

crossref-verify dump-config

Currently supported options include:

  • Timeout for checking external references;
  • List of ignored folders.

For further work

  • Support for non-Unix systems.
  • Support link detection in different languages, not only Markdown.
    • Haskell Haddock is first in turn.

Issue tracker

We use GitHub issues as our issue tracker. You can login using your GitHub account to leave a comment or create a new issue.

For Contributors

Please see CONTRIBUTING.md for more information.

About Serokell

Crossref-verifier is maintained and funded with ❤️ by Serokell. The names and logo for Serokell are trademark of Serokell OÜ.

We love open source software! See our other projects or hire us to design, develop and grow your idea!