add blog post link

pull/2/head
Mike Barry 2021-10-21 07:49:37 -04:00
rodzic 4f059aa8e8
commit 89a993d474
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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 {}