aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/.vitepress/components/api-docs/method.vue10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/.vitepress/components/api-docs/method.vue b/docs/.vitepress/components/api-docs/method.vue
index db98657a..c24565ee 100644
--- a/docs/.vitepress/components/api-docs/method.vue
+++ b/docs/.vitepress/components/api-docs/method.vue
@@ -39,10 +39,12 @@ function seeAlsoToUrl(see: string): string {
<h3>See Also</h3>
<ul>
<li v-for="seeAlso of props.method.seeAlsos" :key="seeAlso">
- <a v-if="seeAlso.startsWith('faker.')" :href="seeAlsoToUrl(seeAlso)">
- {{ seeAlso }}
- </a>
- <template v-else>{{ seeAlso }}</template>
+ <a
+ v-if="seeAlso.startsWith('faker.')"
+ :href="seeAlsoToUrl(seeAlso)"
+ v-html="seeAlso"
+ />
+ <template v-else v-html="seeAlso" />
</li>
</ul>
</div>