Merge pull request #851 from veggiemonk/update-build-script-ref

Update reference to test script
This commit is contained in:
Julien Bisconti 2020-04-14 21:25:19 +02:00 committed by GitHub
commit 9f77b5c631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 21 deletions

View File

@ -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. 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](https://github.com/veggiemonk/awesome-docker/blob/master/pull_request.js)
# Contents <!-- omit in toc --> # Contents <!-- omit in toc -->

View File

@ -26,26 +26,8 @@ const indexTemplate = `${WEBSITE_FOLDER}/index.tmpl.html`;
const indexDestination = `${WEBSITE_FOLDER}/index.html`; const indexDestination = `${WEBSITE_FOLDER}/index.html`;
async function processIndex() { async function processIndex() {
const converter = new showdown.Converter({ const converter = new showdown.Converter();
omitExtraWLInCodeBlocks: true, converter.setFlavor('github');
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');
try { try {
LOG.debug('Loading files...', { indexTemplate, README }); LOG.debug('Loading files...', { indexTemplate, README });