Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

json2md

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json2md

A JSON to Markdown converter.

  • 1.6.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
85K
decreased by-2.29%
Maintainers
1
Weekly downloads
 
Created
Source

json2md

json2md

A JSON to Markdown converter.

Installation

$ npm i json2md

Example

const json2md = require("json2md")

console.log(json2md([
    { h1: "JSON To Markdown" }
  , { blockquote: "A JSON to Markdown converter." }
  , { img: [
        { title: "Some image", source: "https://example.com/some-image.png" }
      , { title: "Another image", source: "https://example.com/some-image1.png" }
      , { title: "Yet another image", source: "https://example.com/some-image2.png" }
      ]
    }
  , { h2: "Features" }
  , { ul: [
        "Easy to use"
      , "You can programmatically generate Markdown content"
      , "..."
      ]
    }
  , { h2: "How to contribute" }
  , { ol: [
        "Fork the project"
      , "Create your branch"
      , "Raise a pull request"
      ]
    }
  , { h2: "Code blocks" }
  , { p: "Below you can see a code block example." }
  , { "code": {
        language: "js"
      , content: [
          "function sum (a, b) {"
        , "   return a + b"
        , "}"
        , "sum(1, 2)"
        ]
      }
    }
]))
// =>
// # JSON To Markdown
// > A JSON to Markdown converter.
//
// ![Some image](https://example.com/some-image.png)
//
// ![Another image](https://example.com/some-image1.png)
//
// ![Yet another image](https://example.com/some-image2.png)
//
// ## Features
//
//  - Easy to use
//  - You can programmatically generate Markdown content
//  - ...
//
// ## How to contribute
//
//  1. Fork the project
//  2. Create your branch
//  3. Raise a pull request
//
// ## Code blocks
//
// Below you can see a code block example.
//
// ```js
// function sum (a, b) {
//    return a + b
// }
// sum(1, 2)
// ```

Documentation

json2md(data, prefix)

Converts a JSON input to markdown.

Supported elements

TypeElementDataExample
h1Heading 1The heading text as string.{ h1: "heading 1" }
h2Heading 2The heading text as string.{ h2: "heading 2" }
h3Heading 3The heading text as string.{ h3: "heading 3" }
h4Heading 4The heading text as string.{ h4: "heading 4" }
h5Heading 5The heading text as string.{ h5: "heading 5" }
h6Heading 6The heading text as string.{ h6: "heading 6" }
pParagraphsThe paragraph text as string or array (multiple paragraphs).{ p: "Hello World"} or multiple paragraphs: { p: ["Hello", "World"] }
blockquoteBlockquoteThe blockquote as string or array (multiple blockquotes){ blockquote: "Hello World"} or multiple blockquotes: { blockquote: ["Hello", "World"] }
imgImageAn object or an array of objects containing the title and source fields.{ img: { title: "My image title", source: "http://example.com/image.png" } }
ulUnordered listAn array of strings representing the items.{ ul: ["item 1", "item 2"] }
olOrdered listAn array of strings representing the items.{ ol: ["item 1", "item 2"] }
codeCode block elementAn object containing the language (String) and content (Array or String) fields.{ code: { "language": "html", "content": "<script src='dummy.js'></script>" } }
tableTableAn object containing the headers (Array of Strings) and rows (Array of Arrays or Objects).{ table: { headers: ["a", "b"], rows: [{ a: "col1", b: "col2" }] } } or { table: { headers: ["a", "b"], rows: [["col1", "col2"]] } }
linkLinkAn object containing the title and the url fields.

You can extend the json2md.converters object to support your custom types.

json2md.converters.sayHello = function (input, json2md) {
   return "Hello " + input + "!"
}

Then you can use it:

json2md({ sayHello: "World" })
// => "Hello World!"
Params
  • Array|Object|String data: The input JSON data.
  • String prefix: A snippet to add before each line.
Return
  • String The generated markdown result.

async

Params
  • Array|Object|String data: The input JSON data.
  • String prefix: A snippet to add before each line.
Return
  • Promise.<String, Error> The generated markdown result.

How to contribute

Have an idea? Found a bug? See how to contribute.

License

See the LICENSE file.

Keywords

FAQs

Package last updated on 10 Sep 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc