From 17713874ffd7eb042cbfb79a082236d377e3bd0c Mon Sep 17 00:00:00 2001 From: Samuel Liu Date: Fri, 14 Jul 2023 14:51:03 +0800 Subject: [PATCH 1/2] fix img dir --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd517b651..e4f58fef9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ hide: ---

- ExternalDNS + ExternalDNS

# ExternalDNS From 48fe50c39eb71d1dd7c23eecec4f50ed87fe2ce5 Mon Sep 17 00:00:00 2001 From: Samuel Liu Date: Mon, 17 Jul 2023 14:05:58 +0800 Subject: [PATCH 2/2] fix both the docs site and the README on github --- docs/scripts/docs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/scripts/docs.go b/docs/scripts/docs.go index 3482ee156..59fdbd43f 100644 --- a/docs/scripts/docs.go +++ b/docs/scripts/docs.go @@ -30,6 +30,7 @@ func removeLinkPrefixInIndex() { updatedContent := strings.ReplaceAll(string(content), "](./docs/", "](") updatedContent = strings.ReplaceAll(updatedContent, "](docs/", "](") + updatedContent = strings.ReplaceAll(updatedContent, "docs/img/external-dns.png", "img/external-dns.png") f, err := os.OpenFile("./docs/index.md", os.O_RDWR, 0o644) if err != nil {