diff --git a/content/tags-inline-link.md b/content/tags-inline-link.md
index 63efcb3..b6e5c50 100644
--- a/content/tags-inline-link.md
+++ b/content/tags-inline-link.md
@@ -76,9 +76,9 @@ By default, the example above produces output similar to the following:
::: example "Output for {@link} tags"
```html
-See <a href="MyClass.html">MyClass</a> and <a href="MyClass.html#foo">MyClass's foo
-property</a>. Also, check out <a href="http://www.google.com">Google</a> and
-<a href="https://github.com">GitHub</a>.
+See MyClass and MyClass's foo
+property. Also, check out Google and
+GitHub.
```
:::
@@ -88,8 +88,8 @@ produce the following output:
::: example "Output with clever links enabled"
```html
-See <a href="MyClass.html"><code>MyClass</code></a> and <a href="MyClass.html#foo">
-<code>MyClass's foo property</code></a>. Also, check out
-<a href="http://www.google.com">Google</a> and <a href="https://github.com">GitHub</a>.
+See MyClass
and
+MyClass's foo property
. Also, check out
+Google and GitHub.
```
:::