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

metalsmith-structure

v0.2.0

Published

A Metalsmith plugin that transforms markdown-generated HTML to be hierarchically structured.

Downloads

3

Readme

metalsmith-structure

A Metalsmith plugin that transforms markdown-generated HTML to be hierarchically structured and extracts heading hierarchy for navigation.
Useful for generating a table of contents for your pages, or making your sections collapsible.

Installation

$ npm install --save metalsmith-structure

Example

var Metalsmith = require('metalsmith'),
  markdown = require('metalsmith-markdown'),
  structure = require('metalsmith-structure');

Metalsmith(__dirname)
  .use(markdown())
  .use(structure({
    // All of these options are optional
    headings: ['h1', 'h2', 'h3'],
    divId: '%s-content',
    divAttrs: {
      class: 'generated-div',
      'data-collapse': 'collapse'
    }
  }))
  .build();

Options

metalsmith-structure takes a single options object which supports the following options:

  • headings - an array of heading tags to use, you can use this to ignore certain heading levels,
    by default this is set to ['h1', 'h2', 'h3'], meaning that lower-level headings, such as h4 and h5 will be ignored.
    The order of these tags matter as it is used to determine hierarchical level.
  • divId - Format for generated div ids, default is %s-content, so heading-1 will produce heading-1-content, %s will be replaced by the heading id.
  • divAttrs - Optional object containing additional HTML attributes for generated divs, for example { class: 'collapse' }

Output

metalsmith-structure transforms the generated HTML so it contains divs that group the content based on headings.
For example, starting from the following markdown:

# Heading 1
## Heading 1.1
Content 1.1
# Heading 2
Content 2

The end result will be:

<h1>Heading 1</h1>
<div id="heading-1-content">
  <h2 id="heading-1-1">Heading 1.1</h2>
  <div id="heading-1-1-content">
    Content 1.1
  </div>
</div>
<h1 id="heading-2">Heading 2</h1>
<div id="heading-2-content">
  Content 2
</div>

metalsmith-structure also adds a headings array to the metadata, which can be used to render navigation.

For the above document, the headings array will look like this:

[
  {
    id: 'heading-1', //original id of the heading generated by markdown, this is moved to the generated div
    priority: 0, //lower number means higher priority
    tag: 'h1',
    text: 'Heading 1', 
    children: [
      {
        id: 'heading-1-1',
        priority: 1,
        tag: 'h2',
        text: 'Heading 1.1'
      }
    ]
  },
  {
    id: 'heading-2',
    priority: 0,
    tag: 'h1',
    text: 'Heading 2'
  }
]

License

This project uses the MIT License, see LICENSE for more information.