
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
remark-lint-no-undefined-references
Advanced tools
remark-lint rule to warn when references to undefined definitions are found
The `remark-lint-no-undefined-references` package is a plugin for `remark-lint` that checks for undefined references in Markdown files. It helps ensure that all reference links in your Markdown documents are defined, preventing broken links and improving document integrity.
Check for undefined references
This feature checks for any undefined references in a Markdown file. The code sample demonstrates how to use `remark-lint-no-undefined-references` with `remark` to process a Markdown string and report any undefined references.
const remark = require('remark');
const lint = require('remark-lint');
const noUndefinedReferences = require('remark-lint-no-undefined-references');
remark()
.use(lint)
.use(noUndefinedReferences)
.process('[undefined]: https://example.com', function (err, file) {
console.error(report(err || file));
});
The `remark-lint-no-unused-definitions` package checks for unused definitions in Markdown files. While `remark-lint-no-undefined-references` ensures that all references are defined, `remark-lint-no-unused-definitions` ensures that all definitions are used. Both packages help maintain the integrity of Markdown documents by addressing different aspects of link and reference management.
The `remark-lint-no-dead-urls` package checks for dead URLs in Markdown files. It ensures that all URLs in the document are reachable, which complements `remark-lint-no-undefined-references` by ensuring that not only are references defined, but the URLs they point to are valid and accessible.
remark-lint
rule to warn when undefined definitions are referenced.
This package checks that referenced definitions are defined.
You can use this package to check for broken references.
This plugin is included in the following presets:
Preset | Options |
---|---|
remark-preset-lint-recommended |
This package is ESM only. In Node.js (version 16+), install with npm:
npm install remark-lint-no-undefined-references
In Deno with esm.sh
:
import remarkLintNoUndefinedReferences from 'https://esm.sh/remark-lint-no-undefined-references@5'
In browsers with esm.sh
:
<script type="module">
import remarkLintNoUndefinedReferences from 'https://esm.sh/remark-lint-no-undefined-references@5?bundle'
</script>
On the API:
import remarkLint from 'remark-lint'
import remarkLintNoUndefinedReferences from 'remark-lint-no-undefined-references'
import remarkParse from 'remark-parse'
import remarkStringify from 'remark-stringify'
import {read} from 'to-vfile'
import {unified} from 'unified'
import {reporter} from 'vfile-reporter'
const file = await read('example.md')
await unified()
.use(remarkParse)
.use(remarkLint)
.use(remarkLintNoUndefinedReferences)
.use(remarkStringify)
.process(file)
console.error(reporter(file))
On the CLI:
remark --frail --use remark-lint --use remark-lint-no-undefined-references .
On the CLI in a config file (here a package.json
):
…
"remarkConfig": {
"plugins": [
…
"remark-lint",
+ "remark-lint-no-undefined-references",
…
]
}
…
This package exports no identifiers.
It exports the TypeScript type
Options
.
The default export is
remarkLintNoUndefinedReferences
.
unified().use(remarkLintNoUndefinedReferences[, options])
Warn when undefined definitions are referenced.
options
(Options
, optional)
— configurationTransform (Transformer
from unified
).
Options
Configuration (TypeScript type).
allow
(Array<RegExp | string>
, optional)
— list of values to allow between [
and ]
allowShortcutLink
(boolean
, default: false
)
— allow shortcut references, which are just brackets such as [text]
Shortcut references use an implicit syntax that could also occur as plain
text.
To illustrate,
it is reasonable to expect an author adding […]
to abbreviate some text
somewhere in a document:
> Some […] quote.
This isn’t a problem, but it might become one when an author later adds a definition:
Some new text […][].
[…]: #read-more
The second author might expect only their newly added text to form a link, but their changes also result in a link for the text by the first author.
ok.md
[Mercury][] is the first planet from the Sun and the smallest in the Solar
System.
Venus is the second planet from the [Sun.
Earth is the third planet from the \[Sun] and the only astronomical object
known to harbor life\.
Mars is the fourth planet from the Sun: [].
[mercury]: https://example.com/mercury/
No messages.
not-ok.md
[Mercury] is the first planet from the Sun and the smallest in the Solar
System.
[Venus][] is the second planet from the Sun.
[Earth][earth] is the third planet from the Sun and the only astronomical
object known to harbor life.
![Mars] is the fourth planet from the Sun in the [Solar
System].
> Jupiter is the fifth planet from the Sun and the largest in the [Solar
> System][].
[Saturn][ is the sixth planet from the Sun and the second-largest
in the Solar System, after Jupiter.
[*Uranus*][] is the seventh planet from the Sun.
[Neptune][neptune][more] is the eighth and farthest planet from the Sun.
1:1-1:10: Unexpected reference to undefined definition, expected corresponding definition (`mercury`) for a link or escaped opening bracket (`\[`) for regular text
4:1-4:10: Unexpected reference to undefined definition, expected corresponding definition (`venus`) for a link or escaped opening bracket (`\[`) for regular text
6:1-6:15: Unexpected reference to undefined definition, expected corresponding definition (`earth`) for a link or escaped opening bracket (`\[`) for regular text
9:2-9:8: Unexpected reference to undefined definition, expected corresponding definition (`mars`) for an image or escaped opening bracket (`\[`) for regular text
9:50-10:8: Unexpected reference to undefined definition, expected corresponding definition (`solar system`) for a link or escaped opening bracket (`\[`) for regular text
12:67-13:12: Unexpected reference to undefined definition, expected corresponding definition (`solar > system`) for a link or escaped opening bracket (`\[`) for regular text
15:1-15:9: Unexpected reference to undefined definition, expected corresponding definition (`saturn`) for a link or escaped opening bracket (`\[`) for regular text
18:1-18:13: Unexpected reference to undefined definition, expected corresponding definition (`*uranus*`) for a link or escaped opening bracket (`\[`) for regular text
20:1-20:19: Unexpected reference to undefined definition, expected corresponding definition (`neptune`) for a link or escaped opening bracket (`\[`) for regular text
20:19-20:25: Unexpected reference to undefined definition, expected corresponding definition (`more`) for a link or escaped opening bracket (`\[`) for regular text
ok-allow.md
When configured with { allow: [ '…' ] }
.
Mercury is the first planet from the Sun and the smallest in the Solar
System. […]
No messages.
source.md
When configured with { allow: [ { source: '^mer' }, 'venus' ] }
.
[Mercury][] is the first planet from the Sun and the smallest in the Solar
System.
[Venus][] is the second planet from the Sun.
No messages.
gfm.md
👉 Note: this example uses GFM (
remark-gfm
).
Mercury[^mercury] is the first planet from the Sun and the smallest in the
Solar System.
[^venus]:
**Venus** is the second planet from the Sun.
1:8-1:18: Unexpected reference to undefined definition, expected corresponding definition (`mercury`) for a footnote or escaped opening bracket (`\[`) for regular text
gfm-table.md
👉 Note: this example uses GFM (
remark-gfm
).
| [Planet] | [Radius] |
| ----------------- | --------- |
| [Mercury] | 2439.7 km |
[planet]: https://example.com/planet/
1:23-1:31: Unexpected reference to undefined definition, expected corresponding definition (`radius`) for a link or escaped opening bracket (`\[`) for regular text
3:3-3:12: Unexpected reference to undefined definition, expected corresponding definition (`mercury`) for a link or escaped opening bracket (`\[`) for regular text
allow-shortcut-link.md
When configured with { allowShortcutLink: true }
.
[Mercury] is the first planet from the Sun and the smallest in the Solar
System.
[Venus][] is the second planet from the Sun.
[Earth][earth] is the third planet from the Sun and the only astronomical object
known to harbor life.
4:1-4:10: Unexpected reference to undefined definition, expected corresponding definition (`venus`) for a link or escaped opening bracket (`\[`) for regular text
6:1-6:15: Unexpected reference to undefined definition, expected corresponding definition (`earth`) for a link or escaped opening bracket (`\[`) for regular text
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line,
remark-lint-no-undefined-references@5
,
compatible with Node.js 16.
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 warn when references to undefined definitions are found
The npm package remark-lint-no-undefined-references receives a total of 130,490 weekly downloads. As such, remark-lint-no-undefined-references popularity was classified as popular.
We found that remark-lint-no-undefined-references demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.