---
slug: /api/misc/@docusaurus/eslint-plugin/no-html-links
---
# no-html-links
import APITable from '@site/src/components/APITable';
Ensure that the Docusaurus [``](../../../docusaurus-core.mdx#link) component is used instead of `` tags.
The `` component has prefetching and preloading built-in. It also does build-time broken link detection, and helps Docusaurus understand your site's structure better.
## Rule Details {#details}
Examples of **incorrect** code for this rule:
```html
go to page!
X
```
Examples of **correct** code for this rule:
```js
import Link from '@docusaurus/Link'
go to page!
X
```
## Rule Configuration {#configuration}
Accepted fields:
```mdx-code-block
```
| Option | Type | Default | Description |
| --- | --- | --- | --- |
| `ignoreFullyResolved` | `boolean` | `false` | Set to true will not report any `` tags with absolute URLs including a protocol. |
```mdx-code-block
```