diff --git a/.github/workflows/markdown-link-checker.yml b/.github/workflows/markdown-link-checker.yml new file mode 100644 index 000000000..d9290c036 --- /dev/null +++ b/.github/workflows/markdown-link-checker.yml @@ -0,0 +1,14 @@ +name: ๐Ÿ€ Markdown Link Check + +on: [pull_request] + +jobs: + markdown-link-check: + name: ๐Ÿงน Check Links + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'no' diff --git a/docs/04.guides/01.getting-started/02.newbie-questions/page.md b/docs/04.guides/01.getting-started/02.newbie-questions/page.md index f12145b9a..757d01b10 100644 --- a/docs/04.guides/01.getting-started/02.newbie-questions/page.md +++ b/docs/04.guides/01.getting-started/02.newbie-questions/page.md @@ -8,7 +8,7 @@ visible: 'false' These instructions assume you know how to set up DNS, port forwarding for your router, and how to add a new site in IIS. -1) Install Lucee [[https://lucee.org/downloads.html]] +1) Install Lucee [https://lucee.org/downloads.html](https://lucee.org/downloads.html) 2) Verify that Lucee is running (The internal IP of my Lucee server is 192.168.1.80, so I went to to view the Hello Lucee page, which verified a successful deployment) diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 000000000..1ad981a7c --- /dev/null +++ b/mlc_config.json @@ -0,0 +1,31 @@ +{ + "ignorePatterns": [ + { + "pattern": "^http:\/\/127.0.0.1.*" + }, + { + "pattern": "^http:\/\/localhost.*" + }, + { + "pattern": "^http:\/\/yourdomain.*" + }, + { + "pattern": "http:\\/\\/{hostname}.*" + }, + { + "pattern": "https:\/\/cdn.lucee.org/{version-number}.*" + }, + { + "pattern": "http:\/\/\\$host:\\$port" + }, + { + "pattern": "http:\/\/mysite.com.*" + }, + { + "pattern": "http:\/\/192.168.*" + }, + { + "pattern": "http:\/\/www.servername.com.*" + } + ] +}