summaryrefslogtreecommitdiff
path: root/doc/api/child_process.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-10-30 15:40:34 -0700
committerRich Trott <rtrott@gmail.com>2021-10-31 09:36:05 -0700
commit86099a375af95f519ae699b68ce101aa20236c5f (patch)
tree1e63ea33211dfe6abb0119f0c941ef07530bae9e /doc/api/child_process.md
parent571e0b1b3f89d05f657355a0d2e8faf19b6b60de (diff)
downloadnode-new-86099a375af95f519ae699b68ce101aa20236c5f.tar.gz
tools: avoid unnecessary escaping in markdown formatter
Update mdast-util-to-markdown to 1.2.4 which reduces unnecessary escaping of `_` and some other characters. Re-run markdown formatter. PR-URL: https://github.com/nodejs/node/pull/40645 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'doc/api/child_process.md')
-rw-r--r--doc/api/child_process.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md
index c0f980a3bb..360ece1095 100644
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -191,7 +191,7 @@ changes:
Spawns a shell then executes the `command` within that shell, buffering any
generated output. The `command` string passed to the exec function is processed
directly by the shell and special characters (vary based on
-[shell](https://en.wikipedia.org/wiki/List\_of\_command-line\_interpreters))
+[shell](https://en.wikipedia.org/wiki/List_of_command-line_interpreters))
need to be dealt with accordingly:
```js