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

markedpp-ninja

v2.0.2

Published

Preprocessor for markdown files

Downloads

12

Readme

markedpp-ninja

Fork of commenthol/markedpp

Preprocessor for documents written in markdown

NPM version

markedpp-ninja is a preprocessor for documents written in markdown. The output itself is again markdown.

It supports the following extensions:

This project is inspired by markdown-pp. Albeight the markdown syntax of this project here is slightly different, markdown-pp commands can be used as well.

Table of Contents

1. Extended Markdown Syntax

The extended markdown syntax for the pre-processor borrows from the already existing image tag. All commands start using a ! followed by the command. Options for the specific command are specified in normal brackets.

!<command> (<options>)

1.1. toc

!toc [([level=1-6] [minlevel=1-6] [numbered] [omit="...;..."])]

Inserts a "Table of Contents" section:

  • level: [optional] level of headings to show (default is 3)
  • minlevel: [optional] min-level of headings to show (default is 1)
  • numbered: [optional] show numbered
  • omit: [optional] remove headings from ToC. Headings need to be given in " and separated by ;

E.g.

  • One
  • Two
    • Two One

      This includes a "Table of Contents" section. All headings up to level=3 will be linked with their references as a unnumbered bullet list.

1.1.1. level

!toc (level=5)

To change the default level of 3 to a different one specify the option level in brackets.

1.1.2. minlevel

!toc (minlevel=2)

The option minlevel only displays the ToC from minlevel leaving out all headings with a lower level.

E.g. with the above example:

1.1.3. numbered

!toc (numbered)

The option numbered displays the ToC without a bullet list but in a flat numbered fashion

E.g.

1. One 1.1. One One 1.1.1. One One One 2. Two 2.1. Two One

The Preprocessor inserts a html comment tag which allows regenerating the TOC on an already preprocessed document.

E.g.

<!-- !toc (level=1) -->

* [One](#one)
* [Two](#two)

<!-- toc! -->

1.1.4. omit

To omit headings in the ToC define those with omit.

E.g. to remove "Table of Contents" and the branch of "Heading 1":

# Table of Contents

!toc (omit="Table of Contents;Heading 1")

# Heading 1
## Heading 1.1
# Heading 2

will result in:

# Table of Contents

<!-- !toc -->

* [Heading 2](#heading-2)

<!-- toc! -->

# Heading 1

## Heading 1.1

# Heading 2

1.2. ref

!ref

This command includes a references section displaying all references using the alternate link syntax [<name>]: <url> "<title>" given in the document being preprocessed.

Local references which start with a "#" are ignored.

E.g.

!ref

[markdown]: http://daringfireball.net/projects/markdown/syntax
[GFM]: https://help.github.com/articles/github-flavored-markdown "Github-Flavored-Markdown"

renders as:

<!-- !ref -->

* [Github-Flavored-Markdown][GFM]
* [markdown][markdown]

<!-- ref! -->

[markdown]: http://daringfireball.net/projects/markdown/syntax
[GFM]: https://help.github.com/articles/github-flavored-markdown "Github-Flavored-Markdown"

1.3. include

!include (filename [lang=...])

This inserts the the file specified with filename at the given position in the document being preprocessed. The preprocessor inserts any type of files.

  • filename: [mandatory] Name of file to include
  • lang: [optional] language of file - if set, then GFM fences are added around include.

To include a file with specifying the language use the option lang.

This then will render using GFM fences.

E.g.

!include (test.js lang=javascript)

renders as

```javascript
/* contents of test.js */
```

You can include a Plant UML *.puml file using the same syntax.

E.g.

!include(./classes.puml)

renders as

```md
<!-- include (./classes.puml) -->
![Plant UML](http://www.plantuml.com/plantuml/svg/<<encrypted puml>>)
<!-- /include -->
```

Plant UML

Files to insert which cannot be found or recursive inset of the same file leaves the !include command as is.

1.4. numberedheadings

!numberedheadings [([level=1-6] [minlevel=1-6] [skip=1..] [start=1..] [omit="...;..."])]

Add numbers on headings

  • level: {Number} [optional] level of Headings to show (default is 3)
  • minlevel: {Number} [optional] min-level of Headings to show (default is 1)
  • skip: {Number} [optional] skip number of Headings on min-level
  • start: {Number} [optional] start numbering of Headings with given number
  • omit: {String} [optional] omit numbering of Headings. Headings need to be given in " and separated by ;

All Headings up to level 3 will get numbered. If used, this command shall be given at the very top of a document.

1.4.1. level

With the option level, the Headings level where the numbering shall be applied, can be specified.

E.g.

!numberedheadings (level=2)

will number all Headings of level 1 and 2.

Used together with !toc the numbered Headings with show up numberd in the bullet-list style.

E.g.

!toc (numbered) will display the flat style, still with the numbers.

1. One 1.1. One One

1.4.2. minlevel

The option minlevel omits numbering all Headings below minlevel.

1.4.3. skip

The option skip skips numbering for the first Headings on minlevel.

1.4.4. start

The option start starts the numbering with the given number.

1.4.5. omit

The option omit omits numbering all Headings matching.

2. Specials

2.1. Using custom anchors

Custom anchors can be added to headings by putting a <a name="..."></a> in a separate line right in front of the heading.

<a name="custom-heading"></a>
# Heading with custom id

Instead of using the auto generated id #heading-with-custom-id, #custom-heading will be used as anchor in the ToC.

2.2. Changing type of autoId generation

Unfortunately there is no unique format which defines the composition of an auto identifier in markdown. marked uses a different format then github.

Available options:

  • --marked for marked - is default
  • --markdownit for markdown-it parser using markdown-it-anchor plugin
  • --unified for unified parser using remark-slug plugin
  • --pandoc for pandoc
  • --github for https://github.com
  • --gitlab for https://gitlab.com
  • --bitbucket for https://bitbucket.org
  • --ghost for https://ghost.org

For other markdown processors:

  • --autoid: adds named anchors on headings using <a name="..."></a>.

On the CLI

markedpp --github file.md

Or use in your options

var markedppninja = require('markedppninja'),
    md = '!toc\n# hello\n## hello & again',
    options = { github: true };

markedpp(md, options, function(err, result){
    console.log(result);
});

3. Installation

For use from commandline consider global install

npm install -g markedpp

For your project

npm install markedpp

4. Usage

var markedppninja = require('markedppninja'),
    md = '!numberedheadings\n!toc(level=1)\n# hello\n## hello again';

markedpp(md, function(err, result){
    console.log(result);
    /* Outputs
    <!-- !numberedheadings -->

    <!-- !toc (level=1) -->

    * [1\. hello](#1-hello)

    <!-- toc! -->

    # 1\. hello

    ## 1.1\. hello again
    */
});

To include files the dirname need to be defined via options, otherwise it is assumed that the file to include is relative to the current working directory:

var markedppninja = require('markedppninja'),
    md = '!include(hello.md)',
    options = { dirname: __dirname };

markedpp(md, options, function(err, result){
    console.log(result);
});

5. CLI

Standalone

$ (cat<<EOF
!numberedheadings
!toc(level=1)
# hello
## hello again
EOF
) > hello.md
$ markedppninja hello.md
<!-- !numberedheadings -->

<!-- !toc (level=1) -->

* [1\. hello](#1-hello)

<!-- toc! -->

# 1\. hello

## 1.1\. hello again

Together with marked

$ markedppninja --no-tags hello.md | marked
<ul>
<li><a href="#1-hello">1. hello</a></li>
</ul>
<h1 id="1-hello">1. hello</h1>
<h2 id="1-1-hello-again">1.1. hello again</h2>

6. Running Tests & Contributing

If you want to submit a pull request, make sure your changes pass the tests. If you're adding a new feature, be sure to add your own test.

To run the tests:

npm test

6.1. Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work.

7. License

Copyright (c) 2014-, Commenthol. (MIT License)

See LICENSE for more info.

8. References