parsemarkjs

1.0.1 • Public • Published

ParseMark.js

A lightweight JavaScript library for parsing Markdown metadata and content separately

Documentation

License

Installation

Using npm

npm install parsemarkjs

Import

// import ParseMark from './ParseMark.module.js'; // if you have downloaded the js file
import ParseMark from 'parsemarkjs';

Using CDN

Include the following script tag in your HTML file:

<script src="https://cdn.jsdelivr.net/gh/SH20RAJ/ParseMark@main/ParseMark.js"></script>

Usage

Constructor

const markdown = `
---
title: "Sample Post"
tags: javascript, library, markdown
datePublished: Fri, 04 Feb 2024 12:00:00 GMT
---

# Sample Post

This is a sample post content.
`;

const parser = new ParseMark(markdown);

getMetadata()

const metadata = parser.getMetadata();
console.log('Metadata:', metadata);

getRawMetadata()

const rawMetadata = parser.getRawMetadata();
console.log('Raw Metadata:', rawMetadata);

getContent()

const content = parser.getContent();
console.log('Content:', content);

Example Output

Screenshot 2024-02-02 at 3 14 25 PM

License

This project is licensed under the MIT License - see the LICENSE file for details.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i parsemarkjs

      Weekly Downloads

      3

      Version

      1.0.1

      License

      MIT

      Unpacked Size

      5.79 kB

      Total Files

      5

      Last publish

      Collaborators

      • sh20raj