diff --git a/README.md b/README.md index 9b80f537..28acdc73 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ Flatmap is named after the "flatmap" operation that it performs: *map* input ele level 0 contains the entire planet in a 256x256 px tile, and each zoom level splits parent tiles into 4 quadrants, revealing more detail. -See [ARCHITECTURE.md](ARCHITECTURE.md) for more details on how Flatmap works. +See [ARCHITECTURE.md](ARCHITECTURE.md) for more details on how Flatmap works or +this [blog post](https://medium.com/@onthegomap/dc419f3af75d) for more of the backstory. ## Demo diff --git a/scripts/check-doc-links.sh b/scripts/check-doc-links.sh index ff342c1b..67dd44e3 100755 --- a/scripts/check-doc-links.sh +++ b/scripts/check-doc-links.sh @@ -4,4 +4,4 @@ set -o errexit set -o pipefail set -o nounset -find . -name '*.md' -exec markdown-link-check --progress --config .github/workflows/docs_mlc_config.json {} \; +find . -name '*.md' -not -path '*/target/*' -print0 | xargs -I {} -n 1 -0 markdown-link-check --quiet --config .github/workflows/docs_mlc_config.json {}