Skip to main content
Version: 3.5.1

prefer-docusaurus-heading

确保使用 Docusaurus theme-classic 提供的 @theme/Heading 主题组件而不是 <hn> 标签作为标题。

¥Ensures that the @theme/Heading theme component provided by Docusaurus theme-classic is used instead of <hn> tags for headings.

规则详情

¥Rule Details

此规则的错误代码示例:

¥Examples of incorrect code for this rule:

<h1>This is heading 1</h1>

<h2>This is heading 2</h2>

<h3>This is heading 3</h3>

此规则的正确代码示例:

¥Examples of correct code for this rule:

import Heading from '@theme/Heading'

<Heading as='h1'>This is heading 1</Heading>

<Heading as='h2'>This is heading 2</Heading>

<Heading as='h3'>This is heading 3</Heading>