$ gnpm install hast-util-is-body-ok-link
Check if a link element is “Body OK”.
This package is ESM only:
Node 12+ is needed to use it and it must be importeded instead of requiredd.
npm:
npm install hast-util-is-body-ok-link
This package exports the following identifiers:
isBodyOkLink.
There is no default export.
import {h} from 'hastscript'
import {isBodyOkLink} from 'hast-util-is-body-ok-link'
isBodyOkLink(h('link', {itemProp: 'foo'})) //=> true
isBodyOkLink(h('link', {rel: ['stylesheet'], href: 'index.css'})) //=> true
isBodyOkLink(h('link', {rel: ['author'], href: 'index.css'})) //=> false
isBodyOkLink(node)true for link elements with an itemProptrue for link elements with a rel list where one or more
entries are pingback, prefetch, or stylesheet.See contributing.md in rehypejs/.github for ways
to get started.
See support.md for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
Copyright 2013 - present © cnpmjs.org | Home |