From 9a2e6c79387e8fdfb5cd5d67b2da16c205707089 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Mon, 14 Oct 2019 13:06:06 -0400 Subject: [PATCH] fix: remark-lint heading-style The dashes directly under the text get interpreted as a heading style --- .remarkrc | 2 -- src/documentation/0034-javascript-promises/index.md | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.remarkrc b/.remarkrc index f80cb74b0f..bbdb4b530a 100644 --- a/.remarkrc +++ b/.remarkrc @@ -5,10 +5,8 @@ ["remark-lint-code-block-style", false], ["remark-lint-fenced-code-flag", false], ["remark-lint-first-heading-level", false], - ["remark-lint-heading-style", false], ["remark-lint-list-item-indent", false], ["remark-lint-maximum-line-length", false], - ["remark-lint-no-blockquote-without-marker", false], ["remark-lint-no-consecutive-blank-lines", false], ["remark-lint-no-heading-indent", false], ["remark-lint-no-inline-padding", false], diff --git a/src/documentation/0034-javascript-promises/index.md b/src/documentation/0034-javascript-promises/index.md index 81d099f8a8..18a6b7421d 100644 --- a/src/documentation/0034-javascript-promises/index.md +++ b/src/documentation/0034-javascript-promises/index.md @@ -85,6 +85,7 @@ getFile('/etc/passwd') ``` > note that in recent versions of node.js, you won't have to do this manual conversion for a lot of the API. There is a promisifying function available in the [util module](https://nodejs.org/docs/latest-v11.x/api/util.html#util_util_promisify_original) that will do this for you, given that the function you're promisifying has the correct signature. + --- ## Consuming a promise