Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v12.x backport] doc: allow <code> in header elements #31108

Closed
wants to merge 55 commits into from

Commits on Dec 17, 2019

  1. test: correct header length subtraction

    In test-http-max-http-headers, a comment asks why we are subtracting 32
    from the length of the invalid-length-by-1 headers instead of just 1.
    Subtracting 1 seems to be correct and works.
    
    PR-URL: nodejs#30712
    Reviewed-By: David Carlier <devnexen@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    0b0cd8d View commit details
    Browse the repository at this point in the history
  2. doc: update socket.bufferSize text

    Edit text for clarity and readability.
    
    PR-URL: nodejs#30723
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    4e93f23 View commit details
    Browse the repository at this point in the history
  3. doc: update README.md to fix active/maint times

    Update REAMDE.md to be consistent with the
    active/maintenance times (12/18) outlined in
    https://github.com/nodejs/Release#release-plan. This was missed
    when the times were swapped in the Node.js 12 timeframe.
    
    PR-URL: nodejs#30707
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    mhdawson authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    827c53b View commit details
    Browse the repository at this point in the history
  4. doc: update signature algorithm in release doc

    Updated doc to reflect what is now done in tools/release.sh
    
    PR-URL: nodejs#30673
    Reviewed-By: Rod Vagg <rod@vagg.org>
    MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    50a54ce View commit details
    Browse the repository at this point in the history
  5. doc: revise REPL uncaught exception text

    Simplify the text about uncaught exceptions in the REPL.
    
    PR-URL: nodejs#30729
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    043163a View commit details
    Browse the repository at this point in the history
  6. test: fix test-benchmark-streams

    test-benchmark-streams is currently failing because the `sync` option is
    not specified in the test, resulting in too many benchmarks running.
    
    PR-URL: nodejs#30757
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    2aa8654 View commit details
    Browse the repository at this point in the history
  7. test: use arrow functions in async-hooks tests

    Convert all anonymous callback functions in `test/async-hooks/*.js`
    to use arrow functions.
    
    `writing-tests.md` states to use arrow functions when appropriate.
    
    PR-URL: nodejs#30137
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    GaryGSC authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    6c6ffdd View commit details
    Browse the repository at this point in the history
  8. doc: fix typographical error

    Insert missing word.
    
    PR-URL: nodejs#30735
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    6a35c38 View commit details
    Browse the repository at this point in the history
  9. build,win: propagate error codes in vcbuild

    Don't exit vcbuild with error code 0 when cctest fails.
    
    PR-URL: nodejs#30724
    Refs: nodejs/build#1996
    Reviewed-By: Rod Vagg <rod@vagg.org>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    joaocgreis authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    3b096c2 View commit details
    Browse the repository at this point in the history
  10. test: add an indicator isIBMi

    We have to skip some test cases on IBM i.
    On IBM i, process.platform and os.platform() both return aix,
    It is not enough to differentiate between IBM i and real AIX system.
    Also updated parallel/test-cluster-bind-privileged-port.js for test.
    
    PR-URL: nodejs#30714
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    dmabupt authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    197b616 View commit details
    Browse the repository at this point in the history
  11. test: add coverage for ERR_TLS_INVALID_PROTOCOL_VERSION

    There is currently no test that confirms that an invalid TLS protocol
    results in ERR_TLS_INVALID_PROTOCOL_VERSION. Add tests to check this for
    the `minVersion` and `maxVersion` options in `createSecureContext()`.
    
    Refs: https://codecov.io/gh/nodejs/node/src/c14c476614e3134867ddb997bdfe5a41ba668175/lib/_tls_common.js#L56
    Refs: https://coverage.nodejs.org/coverage-c14c476614e31348/lib/_tls_common.js.html#L56
    
    PR-URL: nodejs#30741
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Dec 17, 2019
    Configuration menu
    Copy the full SHA
    f3c3b1d View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2019

  1. test: skip test-domain-error-types in debug mode temporariliy

    Until nodejs#30498 is resolved, skip
    test-domain-error-types on debug builds.
    
    PR-URL: nodejs#30629
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Trott authored and BethGriggs committed Dec 23, 2019
    Configuration menu
    Copy the full SHA
    a83ccf8 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2019

  1. doc: allow <code> in header elements

    Allow use of <code> in header elements without styling side effects. We
    can add styling later if desired. The goal here is to allow code to be
    set off in markdown without needing to escape characters and do lint
    exceptions for terms. This is probably a win in terms of accessibility
    too although it would be moreso if we had some visual differentiation
    for <code> inside of headers. As mentioned above, that can always be
    added at a later time.
    
    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    0054636 View commit details
    Browse the repository at this point in the history
  2. doc,dns: use code markup/markdown in headers

    This will allow us to lint for use of `hostname` in prose without
    flagging `hostname` in code within headers. This also allows us to
    remove backslash escaping for `[` and `]` inside of header code, which
    makes the bare markdown more readable.
    
    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    424266a View commit details
    Browse the repository at this point in the history
  3. doc: use code markup/markdown in headers in addons documentation

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    ef4ecf4 View commit details
    Browse the repository at this point in the history
  4. doc,assert: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    a933028 View commit details
    Browse the repository at this point in the history
  5. doc,async_hooks: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    a2bea80 View commit details
    Browse the repository at this point in the history
  6. doc,buffer: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    b4934ef View commit details
    Browse the repository at this point in the history
  7. doc,child_process: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    3e07682 View commit details
    Browse the repository at this point in the history
  8. doc,cluster: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    700e28d View commit details
    Browse the repository at this point in the history
  9. doc,console: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    d92200a View commit details
    Browse the repository at this point in the history
  10. doc,crypto: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    af66dba View commit details
    Browse the repository at this point in the history
  11. doc: use code markup/markdown in headers in deprecations documentation

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    e00e4d2 View commit details
    Browse the repository at this point in the history
  12. doc,dgram: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    17efccd View commit details
    Browse the repository at this point in the history
  13. doc,domain: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    4eb5e60 View commit details
    Browse the repository at this point in the history
  14. doc,errors: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    e74fa1e View commit details
    Browse the repository at this point in the history
  15. doc,esm: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    c763c70 View commit details
    Browse the repository at this point in the history
  16. doc,events: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    b1f2dd6 View commit details
    Browse the repository at this point in the history
  17. doc,fs: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    e91846c View commit details
    Browse the repository at this point in the history
  18. doc: use code markup/markdown in headers in globals documentation

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    23f5045 View commit details
    Browse the repository at this point in the history
  19. doc,http: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    3e95c86 View commit details
    Browse the repository at this point in the history
  20. doc,http2: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    f6084bc View commit details
    Browse the repository at this point in the history
  21. doc,https: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    eb82113 View commit details
    Browse the repository at this point in the history
  22. doc,inspector: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    3ac8493 View commit details
    Browse the repository at this point in the history
  23. doc,module: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    e2a4293 View commit details
    Browse the repository at this point in the history
  24. doc,net: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    7cce4bb View commit details
    Browse the repository at this point in the history
  25. doc,os: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    cc65a3c View commit details
    Browse the repository at this point in the history
  26. doc,path: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    7b73674 View commit details
    Browse the repository at this point in the history
  27. doc,perf_hooks: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    6885967 View commit details
    Browse the repository at this point in the history
  28. doc,process: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    a8f3310 View commit details
    Browse the repository at this point in the history
  29. doc,punycode: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    0c253b9 View commit details
    Browse the repository at this point in the history
  30. doc,querystring: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    003e188 View commit details
    Browse the repository at this point in the history
  31. doc,readline: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    b4b4da4 View commit details
    Browse the repository at this point in the history
  32. doc,repl: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    728c984 View commit details
    Browse the repository at this point in the history
  33. doc,stream: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    3a1772c View commit details
    Browse the repository at this point in the history
  34. doc,string_decoder: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    13e067b View commit details
    Browse the repository at this point in the history
  35. doc,timers: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    e3f26c4 View commit details
    Browse the repository at this point in the history
  36. doc,tls: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    5a76e25 View commit details
    Browse the repository at this point in the history
  37. doc,tty: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    3c2c8fa View commit details
    Browse the repository at this point in the history
  38. doc,url: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    a0717c7 View commit details
    Browse the repository at this point in the history
  39. doc,zlib: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    1bf0dd7 View commit details
    Browse the repository at this point in the history
  40. doc,util: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    f7a70bb View commit details
    Browse the repository at this point in the history
  41. doc,v8: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    de8f03a View commit details
    Browse the repository at this point in the history
  42. doc,worker: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    58132d5 View commit details
    Browse the repository at this point in the history
  43. doc,vm: use code markup/markdown in headers

    PR-URL: nodejs#31086
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Trott committed Dec 27, 2019
    Configuration menu
    Copy the full SHA
    113cbef View commit details
    Browse the repository at this point in the history