
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@croct/md-lite
Advanced tools
MD Lite
A minimalist Markdown parser and render for basic formatting.
📦 Releases
·
🐞 Report Bug
·
✨ Request Feature
This library provides a fast and simple Markdown parser with zero dependencies. Perfect for those who need to handle basic Markdown syntax without the overhead of a full-featured Markdown parser.
Features
inline code
, links, 🖼️ images, and ¶ paragraphs.If you're working on a project that requires rendering Markdown for short texts like titles, subtitles, and descriptions, but you don't need a full-featured Markdown parser, this library is for you.
We recommend using NPM to install the package:
npm install @croct/md-lite
Alternatively, you can use Yarn:
yarn add @croct/md-lite
The following sections show how to parse and render Markdown using this library.
To parse a Markdown string into an AST, use the parse
function:
import {parse} from '@croct/md-lite';
const markdown = '**Hello**, [World](https://example.com)';
const ast = parse(markdown);
The parse
function returns a tree-like structure called an Abstract Syntax Tree (AST).
You can find the full AST definition here.
To render an AST into whatever you want, use the render
function.
It accepts as input either a Markdown string or an AST:
import {render} from '@croct/md-lite';
// Passing a string as input is equivalent to calling `parse` first
const markdown = '**Hello**, [World](https://example.com)';
const html = render(markdown, {
text: node => node.content,
bold: node => `<b>${node.children}</b>`,
italic: node => `<i>${node.children}</i>`,
strike: node => `<s>${node.children}</s>`,
code: node => `<code>${node.content}</code>`,
link: node => `<a href="${node.href}">${node.children}</a>`,
image: node => `<img src="${node.src}" alt="${node.alt}">`,
paragraph: node => `<p>${node.children.join('')}</p>`,
fragment: node => node.children.join(''),
});
Here is an example of how to render the Markdown string above into JSX:
import {render} from '@croct/md-lite';
// Passing a string as input is equivalent to calling `parse` first
const markdown = '**Hello**, [World](https://example.com)';
const jsx = render(markdown, {
text: node => node.content,
bold: node => <b key={node.index}>{node.children}</b>,
italic: node => <i key={node.index}>{node.children}</i>,
strike: node => <s key={node.index}>{node.children}</s>,
code: node => <code key={node.index}>{node.content}</code>,
link: node => <a key={node.index} href={node.href}>{node.children}</a>,
image: node => <img key={node.index} src={node.src} alt={node.alt} />,
paragraph: node => <p key={node.index}>{node.children}</p>,
fragment: node => node.children.map(child => <Fragment key={child.index}>{child}</Fragment>),
});
In some cases, you might want to intentionally omit certain features from your rendered Markdown. For instance, if your platform doesn't support image rendering, ou can simply return the original source text instead of trying to display the image.
import {render, unescape} from '@croct/md-lite';
render(markdown, {
// ... other render functions
image: node => unescape(node.source),
});
This code snippet will simply return the raw source code of the image node instead of trying to render it as an image. You can adapt this approach to handle any other unsupported feature by defining appropriate render functions and accessing the relevant data from the AST.
Contributions to the package are always welcome!
Before running the test suites, the development dependencies must be installed:
npm install
Then, to run all tests:
npm run test
Run the following command to check the code against the style guide:
npm run lint
Before building the project, the dependencies must be installed:
npm install
Then, to build the project:
npm run build
Copyright © 2015-2023 Croct Limited, All Rights Reserved.
All information contained herein is, and remains the property of Croct Limited. The intellectual, design and technical concepts contained herein are proprietary to Croct Limited s and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade secret or copyright law. Dissemination of this information or reproduction of this material is strictly forbidden unless prior written permission is obtained from Croct Limited.
FAQs
A minimalist Markdown parser and render for basic formatting.
We found that @croct/md-lite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.