
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
micromark-factory-whitespace
Advanced tools
micromark factory to parse markdown whitespace (found in lots of places)
micromark factory to parse markdown line endings or spaces (found in lots of places).
This package exposes states to parse whitespace.
This package is useful when you are making your own micromark extensions.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install micromark-factory-whitespace
In Deno with esm.sh
:
import {factoryWhitespace} from 'https://esm.sh/micromark-factory-whitespace@1'
In browsers with esm.sh
:
<script type="module">
import {factoryWhitespace} from 'https://esm.sh/micromark-factory-whitespace@1?bundle'
</script>
import {factoryWhitespace} from 'micromark-factory-whitespace'
import {codes, types} from 'micromark-util-symbol'
// A micromark tokenizer that uses the factory:
/**
* @this {TokenizeContext}
* Context.
* @type {Tokenizer}
*/
function tokenizeTitle(effects, ok, nok) {
return start
/** @type {State} */
function start(code) {
return markdownLineEndingOrSpace(code)
? factoryWhitespace(effects, before)(code)
: nok(code)
}
// …
}
This module exports the identifier
factoryWhitespace
.
There is no default export.
factoryWhitespace(…)
Parse spaces and tabs.
There is no nok
parameter:
ok
will be switched to whether spaces were found
or notmarkdownLineEndingOrSpace(code)
right before using
factoryWhitespace
effects
(Effects
)
— contextok
(State
)
— state switched to when successfulStart state (State
).
This package is fully typed with TypeScript. It exports no additional types.
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,
micromark-factory-whitespace@2
, compatible with Node.js 16.
This package works with micromark@3
.
This package is safe.
See security.md
in micromark/.github
for how to
submit a security report.
See contributing.md
in micromark/.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, organisation, or community you agree to abide by its terms.
FAQs
micromark factory to parse markdown whitespace (found in lots of places)
The npm package micromark-factory-whitespace receives a total of 6,703,142 weekly downloads. As such, micromark-factory-whitespace popularity was classified as popular.
We found that micromark-factory-whitespace demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.