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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@psenger/markdown-fences

v1.2.0

Published

markdown-fences creates workflow activities which inject content into Markdown files with metadata tags.

Readme

markdown-fences

Markdown-fences provides a set of utilities that create assist in workflow related to building Markdown files, injecting content, table of contents, javascript documentation with metadata tags.

Features include:

  1. readContents - an async read file.
  2. writeContents - an async write file.
  3. injectJsDoc - builds Markdown JSDocs and injects them into Markdown contents
  4. injectFileFencePosts - scans ( one pass ) a Markdown file and injects another content into the position
  5. injectToc - Scans a markdown and injects a Table of contents.
  6. injectCodeFencePosts - scans ( one pass ) a Markdown file and injects another content into the position surrounded with GitHub Language highlighting.

js-standard-style

Table of Contents

Installation Instructions

npm install @psenger/markdown-fences --save

or

yarn add @psenger/markdown-fences

API

@psenger/markdown-fences

@psenger/markdown-fences~readContents(file) ⇒ Promise.<string>

Read the file contents of a Markdown file into a string

Kind: inner method of @psenger/markdown-fences

| Param | Type | Description | | --- | --- | --- | | file | String | The fully qualified input file refer to path.join and __dirname |

@psenger/markdown-fences~writeContents(file, content, [options]) ⇒ Promise.<void>

Write the given contents ( Markdown as a string ) to the given file.

Kind: inner method of @psenger/markdown-fences

| Param | Type | Default | Description | | --- | --- | --- | --- | | file | String | | The fully qualified output file refer to path.join and __dirname | | content | String | | the content to write to the file. | | [options] | Object | {encoding:'utf-8'} | optional options passed to fs#writeFile |

@psenger/markdown-fences~injectJsDoc(markdownContent, files, [jsDocOptions]) ⇒ Promise.<String>

Insert JavaScript Documentation into these fences.

Warning: this code uses an old version of jsdoc throw several other APIS. And it will not support any

Kind: inner method of @psenger/markdown-fences Returns: Promise.<String> - - The processed content.

| Param | Type | Description | | --- | --- | --- | | markdownContent | String | The WHOLE read me file, or file that has the TOC Fence in it. | | files | Array.<String> | Any array of fully qualified source files and may include ** globs | | [jsDocOptions] | | Optional options passed to jsdoc-to-markdown render command see jsdoc-to-markdown | | [jsDocOptions.heading-depth] | | The initial heading depth, default 2. For example, with a value of 2 the top-level markdown headings look like "## The heading". | | [jsDocOptions.module-index-format] | | default table, options are: none, grouped, table, or dl | | [jsDocOptions.global-index-format] | | default table, options are: none, grouped, table, or dl | | [jsDocOptions.property-list-format] | | default table, options are: list, or table | | [jsDocOptions.member-index-format] | | default grouped, options are: grouped, or list |

Example

File must have these meta Tags to insert the javascript docs in markdown format
  <!--START_SECTION:jsdoc-->
  <!--END_SECTION:jsdoc-->

@psenger/markdown-fences~injectFileFencePosts(markdownContent, baseDir, [options]) ⇒ Promise.<String>

Inject a file into the meta tag location.

Kind: inner method of @psenger/markdown-fences Returns: Promise.<String> - - The processed content.

| Param | Type | Default | Description | | --- | --- | --- | --- | | markdownContent | String | | The whole markdown content of a file, that has the TOC Fence in it. | | baseDir | String | | The base directory for all the fenced files. | | [options] | Object | {log:false,baseDir: null} | An option | | [options.log] | Boolean | false | Log flag |

Example

File must have these meta Tags to insert the `tutorial.md` file.
  <!--START_SECTION:tutorial.md-->
  <!--END_SECTION:tutorial.md-->

@psenger/markdown-fences~injectCodeFencePosts(markdownContent, baseDir, [options]) ⇒ Promise.<String>

Inject a file into the code fence section location with optional language highlighting.

Kind: inner method of @psenger/markdown-fences Returns: Promise.<String> - - The processed content.

| Param | Type | Default | Description | | --- | --- | --- | --- | | markdownContent | String | | The whole markdown content of a file, that has the Code Fence in it. | | baseDir | String | | The base directory for all the fenced files. | | [options] | Object | {log:false} | An option | | [options.log] | Boolean | false | Log flag |

Example

File must have these meta Tags to insert the file with optional language:
  <!--START_CODE_FENCE_SECTION:javascript:file:example.js-->
  <!--END_CODE_FENCE_SECTION:javascript:file:example.js-->

  Or without language:
  <!--START_CODE_FENCE_SECTION:file:example.txt-->
  <!--END_CODE_FENCE_SECTION:file:example.txt-->

@psenger/markdown-fences~injectToc(markdownContent) ⇒ Promise.<String>

Inject a Table of Contents

Kind: inner method of @psenger/markdown-fences Returns: Promise.<String> - - The processed content.

| Param | Type | Description | | --- | --- | --- | | markdownContent | String | The whole markdown file, or file that has the TOC Fence in it. |

Example

File must have these meta Tags to locate the TOC.
  <!--START_SECTION:toc-->
  <!--END_SECTION:toc-->

@psenger/markdown-fences~generateMarkDownFile(markdownFile, [newMarkdownFile], baseDir, indexes, [options]) ⇒ Promise.<void>

Generate a Markdown File, processing all the fences.

Kind: inner method of @psenger/markdown-fences

| Param | Type | Description | | --- | --- | --- | | markdownFile | String | The file name of the base file with the fences in it. | | [newMarkdownFile] | String | The file name of the output file | | baseDir | String | The directory path that all inserted files can be found | | indexes | Array.<String> | The JavaScript files to build the JS Doc from. | | [options] | Object | Options. |

JavaScript Documentation - Overrides

Generating JavaScript Documentation is extremely difficult. This module has gone through a several solutions and the current release uses the library Jsdoc-to-markdown

jsdoc-to-markdown has many features and functions. The function used to render JS Docs is jsdoc2md.render. This function offers a variety of options to control the output. With a mind to offer sensible defaults yet provide full access to the user these are the defaults, you can provide a object to override it.

Defaults are:

| Attribute | Value | |:-----------------------|:----------| | heading-depth | 2 | | module-index-format | table | | global-index-format | table | | property-list-format | table | | member-index-format | grouped |

JavaScript Documentation - JSDoc documentation is missing

Your modules might go missing, to prevent this you need to annotate it with @moduel see Annotating a Module for an explanation of the problem.

E.g.

/**
 * A module for adding two values.
 * @module add-two-values
 */

Additionally, directories that start with _ are skipped, this is yet another feature, that doesnt make sense till you understand this is the traditional way to skip files for JSDoc ( the code used under the cover. )

E.g.

./src/__test__/*.js  <- wont be scanned.
./src/_harnes_/*.js  <- wont be scanned.

Contributing

Thanks for contributing! 😁 Here are some rules that will make your change to markdown-fences fruitful.

Rules

  • Raise a ticket to the feature or bug can be discussed
  • Pull requests are welcome, but must be accompanied by a ticket approved by the repo owner
  • You are expected to add a unit test or two to cover the proposed changes.
  • Please run the tests and make sure tests are all passing before submitting your pull request
  • Do as the Romans do and stick with existing whitespace and formatting conventions (i.e., tabs instead of spaces, etc)
    • we have provided the following: .editorconfig and .eslintrc
    • Don't tamper with or change .editorconfig and .eslintrc
  • Please consider adding an example under examples/ that demonstrates any new functionality

Deployment Steps

NOTE I tried to make a .REDME.md and build it with tags but there are so many tags within the code it doesn't work very well. I think going forward I think we should make README.md to make individual parts.

These are notes for deploying to NPM. I used npmrc to manage my NPM identities (npm i npmrc -g to install ). Then I created a new profile called public with (npmrc -c public) and then switch to it with npmrc public.

  • create a pull request from dev to main
  • check out main
  • npm version patch -m "message here" or minor
  • npm publish --access public
  • Then switch to dev branch
  • And then merge main into dev and push dev to origin

License

MIT License

Copyright (c) 2021 Philip A Senger

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

This product uses the following Open Source libraries and is subject to their License

Acknowledgments

This project directly uses the following open-source packages:

Dependencies

Development Dependencies