Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

weave-md

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

weave-md

Weave Markdown - inline, expandable references for markdown. Umbrella package for @weave-md/* packages.

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
1
Created
Source

weave-md

Weave Markdown - Inline, expandable references for markdown.

This is an umbrella package that re-exports @weave-md/core, @weave-md/parse, @weave-md/validate, and @weave-md/basic. For most use cases, we recommend installing the individual packages directly from the @weave-md organization.

Packages

PackageDescription
@weave-md/coreTypes, schemas, and language spec
@weave-md/parseParse markdown to WeaveAst
@weave-md/validateValidate references and links
@weave-md/basicReference implementation with CLI and renderer

Installation

Install individual packages (recommended):

pnpm add @weave-md/core @weave-md/parse

Or install everything via this umbrella package:

pnpm add weave-md

Usage

// Import from individual packages (recommended)
import { parseWeaveDocument, compileToWeaveAst } from '@weave-md/parse';
import { extractNodeLinks } from '@weave-md/validate';
import type { Section, NodeRef } from '@weave-md/core';

// Or import from umbrella package (namespaced)
import { core, parse, validate, basic } from 'weave-md';

const ast = parse.parseWeaveDocument(markdown);
const { links, errors } = validate.extractNodeLinks(markdown);
  • GitHub
  • npm org

Keywords

weave

FAQs

Package last updated on 14 Feb 2026

Did you know?

Socket

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.

Install

Related posts