summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-10-10 05:30:20 -0700
committerMyles Borins <mylesborins@github.com>2020-11-16 11:58:01 -0500
commita0b541c3e05ccf937e3065418e082052ceaad7ac (patch)
treebc9fcb1dd230957fa7faf7e9073d0c8d3c807e19
parentadf4f90bce11bbcf0350ec98dc27aa19016507bd (diff)
downloadnode-new-a0b541c3e05ccf937e3065418e082052ceaad7ac.tar.gz
doc: use kbd element in process doc
PR-URL: https://github.com/nodejs/node/pull/35584 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
-rw-r--r--doc/api/process.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index f3e266229f..ae739de787 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -504,11 +504,12 @@ process.on('SIGTERM', handle);
installed its default behavior will be removed.
* `'SIGTERM'` is not supported on Windows, it can be listened on.
* `'SIGINT'` from the terminal is supported on all platforms, and can usually be
- generated with `<Ctrl>+C` (though this may be configurable). It is not
- generated when [terminal raw mode][] is enabled and `<Ctrl>+C` is used.
-* `'SIGBREAK'` is delivered on Windows when `<Ctrl>+<Break>` is pressed, on
- non-Windows platforms it can be listened on, but there is no way to send or
- generate it.
+ generated with <kbd>Ctrl</kbd>+<kbd>C</kbd> (though this may be configurable).
+ It is not generated when [terminal raw mode][] is enabled and
+ <kbd>Ctrl</kbd>+<kbd>C</kbd> is used.
+* `'SIGBREAK'` is delivered on Windows when <kbd>Ctrl</kbd>+<kbd>Break</kbd> is
+ pressed. On non-Windows platforms, it can be listened on, but there is no way
+ to send or generate it.
* `'SIGWINCH'` is delivered when the console has been resized. On Windows, this
will only happen on write to the console when the cursor is being moved, or
when a readable tty is used in raw mode.