From 575ae1e250f293011d5a432b9dc808c1360a0373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 12 Oct 2023 09:39:57 +0200 Subject: [PATCH 1/6] Check links with Lychee --- .github/workflows/markdown.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index 6ae7259..a390571 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -36,3 +36,18 @@ jobs: uses: "DavidAnson/markdownlint-cli2-action@v9" with: globs: "**/*.md" + + links: + name: "Links" + runs-on: "ubuntu-22.04" + timeout-minutes: 10 + steps: + - + name: "Checkout repository" + uses: "actions/checkout@v4" + - + name: "Run Lychee" + uses: "lycheeverse/lychee-action@v1.8.0" + with: + output: "${{ runner.temp }}/lychee/out.md" + fail: true From c3f3c978906d4d0489ca97a5e7a6dd5dc081da77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 12 Oct 2023 09:43:49 +0200 Subject: [PATCH 2/6] Update keep-it-simple-stupid.md --- src/posts/keep-it-simple-stupid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/keep-it-simple-stupid.md b/src/posts/keep-it-simple-stupid.md index c0029fc..1ec9e54 100644 --- a/src/posts/keep-it-simple-stupid.md +++ b/src/posts/keep-it-simple-stupid.md @@ -10,7 +10,7 @@ github: 'https://github.com/conedevelopment/bite-sized-a11y/blob/master/src/post In my opinion, accessibility is an area that rewards simplicity the best. On the web, you can solve the same thing in many ways. If you design with [WCAG](https://www.w3.org/WAI/standards-guidelines/wcag/), you will have an opinionated guide to form your creative thinking. -In many scenarios, you can choose to create a straightforward solution. Leave a carousel from your design and use a simple grid, eliminating the JS dependency and complexity. Usually, what is simple - in an HTML way - is accessible. +In many scenarios, you can choose to create a straightforward solution. Leave a carousel out of your design and use a simple grid, eliminating the JS dependency and complexity. Usually, what is simple - in an HTML way - is accessible. The [Motherfucking Website](http://motherfuckingwebsite.com/) is an excellent example of this methodology called [KISS](https://en.wikipedia.org/wiki/KISS_principle). It is an example site that shows how complex today’s web development can sometimes be because of us. From e302d4a6c2649fde5aad86a8ab700dd038214fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 12 Oct 2023 09:48:16 +0200 Subject: [PATCH 3/6] Create .lycheeignore --- .lycheeignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .lycheeignore diff --git a/.lycheeignore b/.lycheeignore new file mode 100644 index 0000000..e76c231 --- /dev/null +++ b/.lycheeignore @@ -0,0 +1,3 @@ +^\{\{ +^https://www\.skillshare\.com/ +^https://twitter\.com/ From f717f84472f98e6e41918b8535079e0449244c63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 12 Oct 2023 09:50:38 +0200 Subject: [PATCH 4/6] Update .lycheeignore --- .lycheeignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lycheeignore b/.lycheeignore index e76c231..ef83bae 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -1,3 +1,3 @@ -^\{\{ +/\{\{ ^https://www\.skillshare\.com/ ^https://twitter\.com/ From d9ef9c11dd060e5b9020b0254d09b93cb180f619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 12 Oct 2023 09:52:13 +0200 Subject: [PATCH 5/6] Update .lycheeignore --- .lycheeignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lycheeignore b/.lycheeignore index ef83bae..692786c 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -1,3 +1,3 @@ -/\{\{ +/%7B%7B ^https://www\.skillshare\.com/ ^https://twitter\.com/ From 397f2a213b2731dcbcb4b653c6a524097b56ba77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 12 Oct 2023 09:56:58 +0200 Subject: [PATCH 6/6] Update markdown.yml --- .github/workflows/markdown.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index a390571..8be3142 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -49,5 +49,6 @@ jobs: name: "Run Lychee" uses: "lycheeverse/lychee-action@v1.8.0" with: + args: "--verbose --no-progress --require-https './**/*.md'" output: "${{ runner.temp }}/lychee/out.md" fail: true