温馨提示:本站仅提供公开网络链接索引服务,不存储、不篡改任何第三方内容,所有内容版权归原作者所有
AI智能索引来源:http://www.bun.com/reference/bun/markdown/ReactOptions
点击访问原文链接

interface ReactOptions | Bun module | Bun

interface ReactOptions | Bun module | BunBuildDocsReferenceGuidesBlogDiscord/Bun/markdown/ReactOptionsPautolinksPcollapseWhitespacePhardSoftBreaksPheadingsPlatexMathPnoHtmlBlocksPnoHtmlSpansPnoIndentedCodeBlocksPpermissiveAtxHeadersPreactVersionPstrikethroughPtablesPtagFilterPtasklistsPunderlinePwikiLinks

Search the reference...

/

BuildDocsReferenceGuidesBlogDiscord/Bun/markdown/ReactOptionsPautolinksPcollapseWhitespacePhardSoftBreaksPheadingsPlatexMathPnoHtmlBlocksPnoHtmlSpansPnoIndentedCodeBlocksPpermissiveAtxHeadersPreactVersionPstrikethroughPtablesPtagFilterPtasklistsPunderlinePwikiLinks

interface

markdown.ReactOptionsinterface ReactOptions

Options for react() — parser options and element symbol configuration.

autolinks?: boolean | { email: boolean; url: boolean; www: boolean }

Enable autolinks. Pass true to enable all autolink types (URL, WWW, email), or an object to enable individually.

// Enable all autolinks
{ autolinks: true }
// Enable only URL and email autolinks
{ autolinks: { url: true, email: true } }
collapseWhitespace?: boolean

Collapse whitespace in text content. Default: false.

hardSoftBreaks?: boolean

Treat soft line breaks as hard line breaks. Default: false.

headings?: boolean | { autolink: boolean; ids: boolean }

Configure heading IDs and autolink headings. Pass true to enable both heading IDs and autolink headings, or an object to configure individually.

// Enable both heading IDs and autolink headings
{ headings: true }
// Enable only heading IDs
{ headings: { ids: true } }
latexMath?: boolean

Enable LaTeX math ($inline$ and $$display$$). Default: false.

noHtmlBlocks?: boolean

Disable HTML blocks. Default: false.

noHtmlSpans?: boolean

Disable inline HTML spans. Default: false.

noIndentedCodeBlocks?: boolean

Disable indented code blocks. Default: false.

permissiveAtxHeaders?: boolean

Allow ATX headers without a space after #. Default: false.

reactVersion?: 18 | 19

Which $$typeof symbol to use on the generated elements.

19 (default): Symbol.for('react.transitional.element')18: Symbol.for('react.element') — use this for React 18 and older
strikethrough?: boolean

Enable GFM strikethrough (~~text~~). Default: true.

tables?: boolean

Enable GFM tables. Default: true.

interface ReactOptions | Bun module | Bun,AI智能索引,全网链接索引,智能导航,网页索引

    Options for `react()` — parser options and element symbol configuration.