2.0.1 • Published 4 months ago

json2md v2.0.1

Weekly downloads
15,351
License
MIT
Repository
github
Last release
4 months ago

json2md

json2md

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

A JSON to Markdown converter.

If you're looking to use this on the client side, that's also possible. Check out the dist directory.

:cloud: Installation

# Using npm
npm install --save json2md

# Using yarn
yarn add json2md

:clipboard: 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)
// ```

:question: Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. :bug:
  3. For direct and quick help, you can use Codementor. :rocket:

:memo: 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, source and alt fields.{ img: { title: "My image title", source: "http://example.com/image.png", alt: "My image alt" } }
ulUnordered listAn array of strings or lists representing the items.{ ul: ["item 1", "item 2"] }
olOrdered listAn array of strings or lists representing the items.{ ol: ["item 1", "item 2"] }
hrSeparatorNone{ hr: "" }
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 source fields.{ title: 'hello', source: 'https://ionicabizau.net' }

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.

:yum: How to contribute

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

:sparkling_heart: Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like :rocket:
  • Buy me a book—I love books! I will remember you after years if you buy me one. :grin: :book:
  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. :tea:
  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

    npm.io

Thanks! :heart:

:dizzy: Where is this library used?

If you are using this library in one of your projects, add it in this list. :sparkles:

  • @lm_fe/scripts
  • @eventcatalog/utils
  • @servable/manifest
  • @best/github-integration
  • @microfleet/schema2md
  • @cypress/schema-tools
  • @asyncapi/diff
  • @sidneys/releasenotes
  • merak-compile
  • @best/store
  • jumia-travel-changelog
  • npm-ex-xpi
  • doc-vue3
  • @feizheng/react-markdown-props
  • heat-sfdx-tooling
  • @cobalt-engine/change-logger
  • lambda-docs-2md
  • servable-manifest
  • @gracexwho/model-card-generator
  • rap2doc
  • @dschau/gatsby-source-google-docs
  • rush-archive-project-plugin
  • sfhdown
  • tcdown
  • bookmark2md
  • cwq
  • @bonitasoft/dependency-list-to-markdown
  • github-repo-tools
  • gridsome-source-google-docs
  • notion2mdblog
  • kindle-highlights
  • make-postgres-markdown
  • @dlsl/hardhat-markup
  • @aligov/module-doc
  • @opas/plugin-doc
  • @xygengcn/koa-api-docs
  • @dididc/dc-extension
  • parse-google-docs-json
  • cli-demo3
  • gatsby-source-gdocs2md
  • kbase-components
  • lbdoc-p
  • chdown-workers
  • @bwagener/gridsome-source-google-docs
  • doc-cli
  • galaxy-vuepress-docs
  • dargstack_rgen
  • react-docgen-markdown
  • @e2y/bdd-dictionary-generator
  • @medyll/css-fabric-helper
  • @oasis-engine/oasis-run
  • @flive/react-kit
  • @shelex/schema-tools
  • @apica-io/asm-auto-deploy
  • @haimmag/schema-tools
  • rober19-config
  • @klarna/postgres-to-docs
  • @wii/swagger-plugin-transform-doc
  • cloudcastsdown
  • eddown
  • msdown
  • laradown
  • my_ccdown
  • mokker
  • gatsby-source-google-docs
  • gatsby-source-google-docs-sheets
  • platzi-virtual-machine
  • chdown
  • @yesand/asterism
  • ccdown
  • doc-vue
  • @hitorisensei/monorepo-readme-generator
  • uxcore-tools
  • @gigsboat/cli
  • joi-md-doc
  • @everything-registry/sub-chunk-1986
  • describe-dependencies
  • lab-changelog
  • node-red-contrib-json2md
  • p2doc
  • @eventcatalogtest/plugin-doc-generator-asyncapi
  • @solarity/hardhat-markup
  • @s-ui/changelog
  • component-docs-2md
  • codexer
  • @balmacefa/function_tool_kit
  • dokuinjs
  • @mjefi/instags
  • machine-ip
  • flawed-code-scanner
  • pantheon_site_management
  • postgres-markdown
  • reposier
  • gatsby-source-google-docs-team
  • work-webpack
  • vue-md-gen
  • @hitorisensei/markdown-readme-generator
  • @jswork/react-markdown-props
  • terraform2md
  • solidity-benchmark
  • utterance-to-markdown
  • @eventcatalog/plugin-doc-generator-asyncapi
  • type-graphql-to-md
  • @cloudcatalog/cli
  • @cloudcatalog/cli-testI am using this library to generate documentation for my projects, being integrated with blah.

:scroll: License

MIT © Ionică Bizău

dependency-list-to-markdownasm-auto-deploy@discordoo/taapokgitdox@infinitebrahmanuniverse/nolb-json2@everything-registry/sub-chunk-1986servable-manifest@e2y/bdd-dictionary-generatorvue-md-genvue2markdownwork-webpackterraform2mdtype-graphql-to-md@eventcatalog/plugin-doc-generator-asyncapi@eventcatalog/utils@eventcatalogtest/plugin-doc-generator-asyncapi@feizheng/react-markdown-propsuxcore-toolsutterance-to-markdown@hitorisensei/markdown-readme-generator@hitorisensei/monorepo-readme-generatortcdown@haimmag/schema-tools@dlsl/hardhat-markupcloudcastsdowncollmancli-demo3dokuinjsdescribe-dependenciesrap2docreposierrober19-configrush-archive-project-pluginsfhdownsolidity-benchmark@bwagener/gridsome-source-google-docs@dididc/dc-extensioncodexer@mjefi/instagsgithub-repo-tools@microfleet/schema2md@opas/plugin-doc@gigsboat/cli@gracexwho/model-card-generator@flive/react-kit@jswork/react-markdown-props@best/github-integration@best/storebookmark2md@balmacefa/function_tool_kitmysql-ksdbmy_ccdownchdownchdown-workersccdown@cypress/schema-toolsmsdownmokker@cloudcatalog/cli@cloudcatalog/cli-testnode-red-contrib-json2md@cobalt-engine/change-logger@bonitasoft/dependency-list-to-markdownnotion2mdblognpm-ex-xpimerak-compileparse-google-docs-jsonpantheon_site_managementplatzi-virtual-machinecwqcomponent-docs-2mddargstack_rgenpostgres-markdowndoc-vuedoc-vue3doc-clireact-docgen-markdownp2doc@dschau/gatsby-source-google-docs@oasis-engine/oasis-run@s-ui/changeloggridsome-source-google-docsheat-sfdx-toolingjumia-travel-changelogeddown@medyll/css-fabric-helper@klarna/postgres-to-docs@lm_fe/scripts@shelex/schema-tools@solarity/hardhat-markup@sidneys/releasenotesjoi-md-doc@servable/manifestlggn@aligov/module-doc@apica-io/asm-auto-deploy@asyncapi/diffgalaxy-vuepress-docsgatsby-source-google-docsgatsby-source-google-docs-sheets
2.0.1

4 months ago

1.13.0

2 years ago

2.0.0

2 years ago

1.12.0

3 years ago

1.11.0

3 years ago

1.10.0

3 years ago

1.9.2

3 years ago

1.9.1

3 years ago

1.9.0

4 years ago

1.8.0

4 years ago

1.7.1

4 years ago

1.7.0

4 years ago

1.6.5

5 years ago

1.6.4

5 years ago

1.6.3

5 years ago

1.6.2

5 years ago

1.6.1

6 years ago

1.6.0

6 years ago

1.5.11

6 years ago

1.5.10

7 years ago

1.5.9

7 years ago

1.5.8

7 years ago

1.5.7

7 years ago

1.5.6

7 years ago

1.5.5

8 years ago

1.5.4

8 years ago

1.5.3

8 years ago

1.5.2

8 years ago

1.5.1

8 years ago

1.5.0

8 years ago

1.4.1

8 years ago

1.4.0

8 years ago

1.3.0

8 years ago

1.2.0

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago