Fix Markdown links inside inline code blocks.

These were not showing up properly [on the documentation page](https://docs.bazel.build/versions/master/build-javascript.html).

Closes #6753.

PiperOrigin-RevId: 222875444
diff --git a/site/docs/build-javascript.md b/site/docs/build-javascript.md
index c2e7307..e32338a 100644
--- a/site/docs/build-javascript.md
+++ b/site/docs/build-javascript.md
@@ -165,7 +165,7 @@
 
 ## Building JavaScript
 
-Use the <code>[rules_nodejs](https://github.com/bazelbuild/rules_nodejs)</code>
+Use the [`rules_nodejs`](https://github.com/bazelbuild/rules_nodejs)
 rules to build NodeJS applications and execute JavaScript code within Bazel. You
 can execute JavaScript tools in the Bazel toolchain, binary programs, or tests.
 The NodeJS rules add the NodeJS runtime to your Bazel project.
@@ -182,7 +182,7 @@
 
 ## Building TypeScript
 
-Use the <code>[rules_typescript](https://github.com/bazelbuild/rules_typescript)</code>
+Use the [`rules_typescript`](https://github.com/bazelbuild/rules_typescript)
 rules to build JavaScript outputs from TypeScript inputs.
 
 To set up your Bazel project for building TypeScript inputs, do the following: