From 7bfde1646a0d40fd0c7056c15359eed0be7cd41d Mon Sep 17 00:00:00 2001 From: Jeff Lembeck Date: Tue, 20 Nov 2018 17:34:54 -0800 Subject: [PATCH] fix(doc): move line for markdown renderers Certain markdown renderers (psst, Jekyll) insert a closing

tag here in the middle of this code block, which leads the browser to assume that is a tag that you want. This is fixed by keeping the code block in its own line. --- doc/misc/npm-scripts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/misc/npm-scripts.md b/doc/misc/npm-scripts.md index e4b90096ae962..f1be5b65ca4b7 100644 --- a/doc/misc/npm-scripts.md +++ b/doc/misc/npm-scripts.md @@ -52,8 +52,8 @@ following scripts: Additionally, arbitrary scripts can be executed by running `npm run-script `. *Pre* and *post* commands with matching names will be run for those as well (e.g. `premyscript`, `myscript`, -`postmyscript`). Scripts from dependencies can be run with `npm explore - -- npm run `. +`postmyscript`). Scripts from dependencies can be run with +`npm explore -- npm run `. ## PREPUBLISH AND PREPARE