npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

markdown-grouper

v1.7.1

Published

package for grouping html parsed from markdown. This package uses header for grouping. You can set class or id for each group, so you can customize css or etc for each group.

Downloads

16

Readme

markdown-grouper

package for grouping html parsed from markdown.

This package uses header for grouping.

You can set class or id for each group, so you can customize css or etc for each group.

Installation

For use as a module:

npm install markdown-grouper

For use as a command line app:

npm install markdown-grouper -g

Module Usage

Functions

Available functions

🔹parseToGroup

parse markdown text to grouped html text.

🔹parseFileToGroup

parse markdown file to grouped html text.

Usage

const { parseToGroup, parseFileToGroup } = require("markdown-grouper")

const md = `
# Title1
lorem ipsum

## Subtitle1
> test paragraph

### SubSubtitle
qwerty

## Subtitle2
hello world
`;

const groupedHtml = parseToGroup(md, 1);

const groupedHtmlFromFile = parseFileToGroup("./src/Hello.md", 1);

console.log(groupedHtml);

result

<section id="_h1-1">
  <h1>Title1</h1>
  <p>lorem ipsum</p>
  <section id="_h1-1_h2-1">
    <h2>Subtitle1</h2>
    <blockquote>
      <p>test paragraph</p>
    </blockquote>
    <section id="_h1-1_h2-1_h3-1">
      <h3>SubSubtitle</h3>
      <p>qwerty</p>
    </section>
  </section>
  <section id="_h1-1_h2-2">
    <h2>Subtitle2</h2>
    <p>hello world</p>
  </section>
</section>

Params

🔹parseToGroup

|Param|Type|Required|Description| |---|---|---|---| |markdownText|string|YES|Markdown text that you want to make group| |minLevel|1\|2\|3\|4\|5\|6|NO|The smallest header number to start grouping.| |maxLevel|1\|2\|3\|4\|5\|6|NO|The largest header number to start grouping.| |selector|string|NO|Selector that you want to use between id and class.(Possible values - All upper or lower cases of "class" and "id")| |prefix|string|NO|prefix string of class or id.( "_" -> <section class="_h1-1"> )| |postfix|string|NO|postfix string of class or id.( "--" -> <section class="_h1--1"> )|

🔹parseFileToGroup

|Param|Type|Required|Description| |---|---|---|---| |markdownPath|string|YES|Path of Markdown file that you want to make group| |minLevel|1\|2\|3\|4\|5\|6|NO|The smallest header number to start grouping.| |maxLevel|1\|2\|3\|4\|5\|6|NO|The largest header number to start grouping.| |selector|string|NO|Selector that you want to use between id and class.(Possible values - All upper or lower cases of "class" and "id")| |prefix|string|NO|prefix string of class or id.( "_" -> <section class="_h1-1"> )| |postfix|string|NO|postfix string of class or id.( "--" -> <section class="_h1--1"> )|


Class

Description

You can import two below.

🔹markdownDoc

Instance of Class MarkdownDocument. Automatically initialized when you use parseToGroup or parseFileToGroup function.

🔹MarkdownDocument

Class that contains information about markdown text of file. You can create Instance with empty constuctor and initialize it with setDocument method. You can use two properties and two methods.

Properties
  • markdown : string from original markdown text or file.
  • html : string result of grouped html from markdown text or file.
Methods
  • setDocument : Set the value of MarkdownDocument. Use this method first after create instance. Then you can use other properties and methods.

|Param|Type|Required|Description| |---|---|---|---| |isPath|boolean|YES|true if you want to use markdown file, false to use markdown text| |markdownText|string|YES|Path of markdown file or string of markdown text| |minLevel|1\|2\|3\|4\|5\|6|NO|The smallest header number to start grouping. Default value is 1| |maxLevel|1\|2\|3\|4\|5\|6|NO|The largest header number to start grouping.| |order|number|NO|Smallest number of header tag that you want to start grouping. Default value is 1(1 -> from h1 to h6, 2 -> from h2 to h6, ...)| |prevLabel|string|NO|Starting text of class or id of header tag. Default value is ""| |selector|string|NO|Selector that you want to use between id and class. Default value is "id"(Possible values - All upper or lower cases of "class" and "id")| |prefix|string|NO|Prefix string of class or id. Default value is "_"( "_" -> <section class="_h1-1"> )| |postfix|string|NO|Postfix string of class or id. Default value is "-"( "--" -> <section class="_h1--1"> )|

  • showHeaderTree : Print and return the string of header structure in a tree form.

Usage

const { parseToGroup, markdownDoc, MarkdownDocument } = require("markdown-grouper")

const md = `
# Title1
lorem ipsum

## Subtitle1
> test paragraph

### SubSubtitle
qwerty

## Subtitle2
hello world
`;

const groupedHtml = parseToGroup(md, 1);
console.log(groupedHtml);

console.log(markdownDoc.html);
markdownDoc.showHeaderTree();

const markdownDoc2 = new MarkdownDocument();
markdownDoc2.setDocument(false, md);

console.log(markdownDoc2.html);
markdownDoc2.showHeaderTree();

result

<section id="_h1-1">
  <h1>Title1</h1>
  <p>lorem ipsum</p>
  <section id="_h1-1_h2-1">
    <h2>Subtitle1</h2>
    <blockquote>
      <p>test paragraph</p>
    </blockquote>
    <section id="_h1-1_h2-1_h3-1">
      <h3>SubSubtitle</h3>
      <p>qwerty</p>
    </section>
  </section>
  <section id="_h1-1_h2-2">
    <h2>Subtitle2</h2>
    <p>hello world</p>
  </section>
</section>

<section id="_h1-1">
  <h1>Title1</h1>
  <p>lorem ipsum</p>
  <section id="_h1-1_h2-1">
    <h2>Subtitle1</h2>
    <blockquote>
      <p>test paragraph</p>
    </blockquote>
    <section id="_h1-1_h2-1_h3-1">
      <h3>SubSubtitle</h3>
      <p>qwerty</p>
    </section>
  </section>
  <section id="_h1-1_h2-2">
    <h2>Subtitle2</h2>
    <p>hello world</p>
  </section>
</section>

<h1>Title1</h1>
  ├<h2>Subtitle1</h2>
  │  └<h3>SubSubtitle</h3>
  └<h2>Subtitle2</h2>




<section id="_h1-1">
  <h1>Title1</h1>
  <p>lorem ipsum</p>
  <section id="_h1-1_h2-1">
    <h2>Subtitle1</h2>
    <blockquote>
      <p>test paragraph</p>
    </blockquote>
    <section id="_h1-1_h2-1_h3-1">
      <h3>SubSubtitle</h3>
      <p>qwerty</p>
    </section>
  </section>
  <section id="_h1-1_h2-2">
    <h2>Subtitle2</h2>
    <p>hello world</p>
  </section>
</section>

<h1>Title1</h1>
  ├<h2>Subtitle1</h2>
  │  └<h3>SubSubtitle</h3>
  └<h2>Subtitle2</h2>

CLI Usage

Basic Usage

Usage: mdg [options] [command]

CLI parse markdown file into html grouped with <section> tag based on header.

Options:
  -V, --version           output the version number
  -h, --help              display help for command

Commands:
  parse [options] <path>  Parse a markdown file into html grouped with <section> tag based on header.
  tree <path>             Show a tree structure of markdown file based on header.
  help [command]          display help for command

Commands

parse

Parse a markdown file into html grouped with <section> tag based on header.

You can save the result with -s and -p options.

Usage: mdg parse [options] <path>
Example: mdg parse ./test.md -s -p ./src/result.html

Arguments:
  path               Path to your markdown file.
                     ex) ./posts/hello.md

Options:
  -s, --save         Use if you want to save result. Don't use if you want to print result.
  -p, --path <path>  Path to save html file that is parsed from markdown file.
                     You should use this with save option(-s, --save).
  -h, --help         display help for command

tree

Show a tree structure of markdown file based on header.

Usage: mdg tree [options] <path>
Example: mdg tree ./test.md

Arguments:
  path        Path to your markdown file.
              ex) ./posts/hello.md

Options:
  -h, --help  display help for command