Socket
Book a DemoInstallSign in
Socket

update-sections

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

update-sections

Easily prepend, append, inject or replace 'sections' in a markdown string.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
103
-29.45%
Maintainers
1
Weekly downloads
 
Created
Source

update-sections NPM version Build Status

Easily prepend, append, inject or replace 'sections' in a markdown string.

Install

Install with npm:

$ npm i update-sections --save

Usage

var fs = require('fs');
var update = require('update-sections');
var readme = fs.readFileSync('README.md', 'utf8');
var snippet = fs.readFileSync('contributing.md', 'utf8');

// Inject the `contributing.md` string before the "License" section
var str = update(readme, 'License', snippet, 'before');

API

update

Re-write a layout with "sections" defined in a declarative configuration. The sections property must be an array of section object, and each object must have all params defined: contents, heading and placement.

Supported placement values are:

  • inner (or aliases: inside and between): inject the content directly after the heading, before the content of a section
  • before (or alias prepend): inject the content before the specified section's heading
  • after (or alias append): inject the content after the specified section's heading

Params

  • contents {String}: the string with sections to update
  • heading {String}: the heading of the existing section to match for placement
  • value {String}: the "snippet" to inject for the section
  • placement {String}: where to place the new content, relative to the specified heading.
  • returns {String}

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

Generate readme and API documentation with verb:

$ npm i -d && npm run docs

Or, if verb is installed globally:

$ verb

Running tests

Install dev dependencies:

$ npm i -d && npm test

Author

Jon Schlinkert

License

Copyright © 2016 Jon Schlinkert Released under the MIT license.

This file was generated by verb, v0.9.0, on February 21, 2016.

Keywords

append

FAQs

Package last updated on 22 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts