From 89a993d4748f363f6d2248147ef1879e48f91482 Mon Sep 17 00:00:00 2001 From: Mike Barry Date: Thu, 21 Oct 2021 07:49:37 -0400 Subject: [PATCH] add blog post link --- README.md | 3 ++- scripts/check-doc-links.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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 {}