mirror of
https://github.com/veggiemonk/awesome-docker.git
synced 2024-12-22 14:15:10 -05:00
Merge pull request #851 from veggiemonk/update-build-script-ref
Update reference to test script
This commit is contained in:
commit
9f77b5c631
@ -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 -->
|
||||||
|
|
||||||
|
22
build.js
22
build.js
@ -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 });
|
||||||
|
Loading…
Reference in New Issue
Block a user