From 9e140984d789523246ae5f60235b0c5d2ad47958 Mon Sep 17 00:00:00 2001 From: Julien Bisconti Date: Mon, 13 Apr 2020 18:04:01 +0200 Subject: [PATCH 1/3] Update reference to test script --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4bc9bad..36dbb1e 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ If this list is not complete, you can [contribute][editreadme] to make it so. He The creators and maintainers of this list do not receive any form of payment to accept a change made by any contributor. This page is not an official Docker product in any way. It is a list of links to projects and is maintained by volunteers. Everybody is welcome to contribute. The goal of this repo is to index open-source projects, not to advertise for profit. -All the links are monitored and tested with [awesome_bot](https://github.com/dkhamsing/awesome_bot) made by [@dkhamsing](https://github.com/dkhamsing) +All the links are monitored and tested with a home baked [Node.js script](pull_request.js) # Contents From 8cf8f8b10aae3f53ba2b7b04d94ca22ee8841ba7 Mon Sep 17 00:00:00 2001 From: Julien Bisconti Date: Mon, 13 Apr 2020 18:10:00 +0200 Subject: [PATCH 2/3] Add full path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36dbb1e..730a5d8 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ If this list is not complete, you can [contribute][editreadme] to make it so. He The creators and maintainers of this list do not receive any form of payment to accept a change made by any contributor. This page is not an official Docker product in any way. It is a list of links to projects and is maintained by volunteers. Everybody is welcome to contribute. The goal of this repo is to index open-source projects, not to advertise for profit. -All the links are monitored and tested with a home baked [Node.js script](pull_request.js) +All the links are monitored and tested with a home baked [Node.js script](https://github.com/veggiemonk/awesome-docker/blob/master/pull_request.js) # Contents From 89a3dcee07b4e35ab4e6f4ec668110d25b86412b Mon Sep 17 00:00:00 2001 From: Julien Bisconti Date: Mon, 13 Apr 2020 18:12:42 +0200 Subject: [PATCH 3/3] Replace showdown options --- build.js | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/build.js b/build.js index 9564e99..6b123a3 100644 --- a/build.js +++ b/build.js @@ -26,26 +26,8 @@ const indexTemplate = `${WEBSITE_FOLDER}/index.tmpl.html`; const indexDestination = `${WEBSITE_FOLDER}/index.html`; async function processIndex() { - const converter = new showdown.Converter({ - omitExtraWLInCodeBlocks: true, - simplifiedAutoLink: true, - excludeTrailingPunctuationFromURLs: true, - literalMidWordUnderscores: true, - strikethrough: true, - tables: true, - tablesHeaderId: true, - ghCodeBlocks: true, - tasklists: true, - disableForced4SpacesIndentedSublists: true, - simpleLineBreaks: true, - requireSpaceBeforeHeadingText: true, - ghCompatibleHeaderId: true, - ghMentions: true, - backslashEscapesHTMLTags: true, - emoji: true, - splitAdjacentBlockquotes: true, - }); - // converter.setFlavor('github'); + const converter = new showdown.Converter(); + converter.setFlavor('github'); try { LOG.debug('Loading files...', { indexTemplate, README });