Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
remark-lint-no-heading-like-paragraph
Advanced tools
remark-lint rule to for too many hashes (h7+ “headings”)
Warn for h7+ “headings”.
This rule is not included in any default preset
ok.md
###### Alpha
Bravo.
No messages.
not-ok.md
####### Charlie
Delta.
1:1-1:16: This looks like a heading but has too many hashes
This package is ESM only:
Node 12+ is needed to use it and it must be imported
ed instead of required
d.
npm:
npm install remark-lint-no-heading-like-paragraph
This package exports no identifiers.
The default export is remarkLintNoHeadingLikeParagraph
.
You probably want to use it on the CLI through a config file:
…
"remarkConfig": {
"plugins": [
…
"lint",
+ "lint-no-heading-like-paragraph",
…
]
}
…
Or use it on the CLI directly
remark -u lint -u lint-no-heading-like-paragraph readme.md
Or use this on the API:
import {remark} from 'remark'
import {reporter} from 'vfile-reporter'
import remarkLint from 'remark-lint'
import remarkLintNoHeadingLikeParagraph from 'remark-lint-no-heading-like-paragraph'
remark()
.use(remarkLint)
+ .use(remarkLintNoHeadingLikeParagraph)
.process('_Emphasis_ and **importance**')
.then((file) => {
console.error(reporter(file))
})
See contributing.md
in remarkjs/.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.
FAQs
remark-lint rule to for too many hashes (h7+ “headings”)
The npm package remark-lint-no-heading-like-paragraph receives a total of 16,549 weekly downloads. As such, remark-lint-no-heading-like-paragraph popularity was classified as popular.
We found that remark-lint-no-heading-like-paragraph demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.