Use backticks to wrap links that should not be linked (#754)

* Fix italic formatting in link text * Use backticks to wrap links that should not be linked --------- Co-authored-by: Eric Mutta <eric.mutta@gmail.com>

Luke Karrys committed Oct 13, 2023 at 09:41 UTC 5206c7159f0eaa966d8f692a2ac954305b34462e
2 files changed +2 -2
content/about-npm/index.mdx
+1 -1
@@ -34,7 +34,7 @@ The [*registry*](https://docs.npmjs.com/misc/registry) is a large public databas
34
35 ## Getting started
36
37 -To get started with npm, you can [create an account](https://www.npmjs.com/signup), which will be available at http://www.npmjs.com/~*yourusername*.
37 +To get started with npm, you can [create an account](https://www.npmjs.com/signup), which will be available at `http://www.npmjs.com/~yourusername`.
38
39 After you set up an npm account, the next step is to use the command line interface (CLI) to [install npm][install-npm]. We look forward to seeing what you create!
40
content/packages-and-modules/contributing-packages-to-the-registry/creating-and-publishing-unscoped-public-packages.mdx
+1 -1
@@ -76,7 +76,7 @@ npm install path/to/my-package
76
77 </Note>
78
79 -3. To see your public package page, visit https://npmjs.com/package/*package-name*, replacing *package-name* with the name of your package. Public packages will say `public` below the package name on the npm website.
79 +3. To see your public package page, visit `https://npmjs.com/package/*package-name*`, replacing `*package-name*` with the name of your package. Public packages will say `public` below the package name on the npm website.
80
81 For more information on the `publish` command, see the [CLI documentation][cli-publish].
82