
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
create-markdown
Advanced tools
Markdown package to enable creating markdown interfaces seamlessly because it is complicated and annoying asf.
# Using bun (recommended)
bun add create-markdown
# Using npm
npm install create-markdown
# Using yarn
yarn add create-markdown
# Using pnpm
pnpm add create-markdown
import { createMarkdown } from 'create-markdown';
const doc = createMarkdown('# Hello World');
console.log(doc.content);
import createMarkdown from 'create-markdown';
const doc = createMarkdown('# Hello World');
console.log(doc.content);
const { createMarkdown } = require('create-markdown');
const doc = createMarkdown('# Hello World');
console.log(doc.content);
import { createMarkdown, type MarkdownOptions } from 'create-markdown';
const options: MarkdownOptions = {
strict: true,
lineEnding: '\n',
};
const doc = createMarkdown('# My Document', options);
createMarkdown(content?, options?)Creates a new markdown document.
Parameters:
content (string, optional): Initial markdown contentoptions (MarkdownOptions, optional): Configuration options
strict (boolean): Enable strict parsing modelineEnding (string): Custom line ending (default: '\n')Returns: MarkdownDocument
content (string): Raw markdown contentmeta (Record<string, unknown>): Document metadataVERSIONPackage version string.
import { VERSION } from 'create-markdown';
console.log(VERSION); // '0.1.1'
# Install dependencies
bun install
# Build the package
bun run build
# Watch mode during development
bun run dev
# Clean build artifacts
bun run clean
# Run the playground
bun run playground
We welcome contributions! Please see CONTRIBUTING.md for guidelines.
See CHANGELOG.md for release history.
MIT
FAQs
Complete block-based markdown notes package - convenience bundle for @create-markdown packages
The npm package create-markdown receives a total of 4 weekly downloads. As such, create-markdown popularity was classified as not popular.
We found that create-markdown 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.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.