New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

markdown-doc-loader

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-doc-loader

markdown doc webpack loader

  • 2.1.4
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
14
increased by55.56%
Maintainers
1
Weekly downloads
 
Created
Source

markdown-doc-loader

A webpack loader to parse markdown-doc markdown to structured data using unified.

Ecosystem

  • markdown-doc-loader
  • react-markdown-doc-loader
  • markdown-doc-loader-utils

Usage

Use as a webpack loader.

{
	module: {
		rules: [
			{
			test: /\.md$/,
			use: [
				// additional loaders to convert markdown AST to js
				'markdown-doc-loader'
			]
			}
		]
	}
}

Output

This loader emits an array of unified ASTs, so additional loaders must be used to convert these ASTs to js code.

Output array can have 3 types of ASTs, use contentType on the root to check type:

  • style: indicates a style tree, there will be only one style tree in the output if any. All styles tag in the markdown will be consolidated.
  • demo: indicates a demo tree, a demo consists of a code fragment and an optional title
  • markdown: indicates a normal markdown tree.

markdown-doc-loader-utils consists some utilities for working with these ASTs.

Keywords

FAQs

Package last updated on 29 Jun 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc