
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
mdast-builder
Advanced tools
Use composable functions to buld up a mdast
structure
yarn add mdast-builder
import {
root,
paragraph,
text,
heading,
list,
listItem,
brk
} from 'mdast-builder';
import * as stringify from 'remark-stringify';
import * as unified from 'unified';
const processor = unified().use(stringify, {
bullet: '-',
fence: '`',
fences: true,
incrementListMarker: false
});
const output = processor.stringify(
root([
heading(2, text('Begin')),
paragraph([
paragraph(text('these are the starting instructions')),
brk,
brk,
list('unordered', [
listItem(text('one')),
listItem(text('two')),
listItem(text('three'))
])
])
])
);
output
will equal
## Begin
these are the starting instructions
- one
- two
- three
© 2019 LinkedIn
FAQs
Composable functions to easily build mdast structures
The npm package mdast-builder receives a total of 21,983 weekly downloads. As such, mdast-builder popularity was classified as popular.
We found that mdast-builder demonstrated a not healthy version release cadence and project activity because the last version was released 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
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.