All Projects β†’ IonicaBizau β†’ Json2md

IonicaBizau / Json2md

Licence: mit
πŸ“Œ A JSON to Markdown converter.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Json2md

Esphome
ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
Stars: ✭ 4,324 (+1285.9%)
Mutual labels:  hacktoberfest
Scssphp
SCSS compiler written in PHP
Stars: ✭ 309 (-0.96%)
Mutual labels:  hacktoberfest
Katello
Katello integrates open source systems management tools into a single solution for controlling the lifecycle of your machines.
Stars: ✭ 312 (+0%)
Mutual labels:  hacktoberfest
Awesome Dashboards
List of dashboards free to use
Stars: ✭ 309 (-0.96%)
Mutual labels:  hacktoberfest
Gatsby Woocommerce Themes
⚑ A Gatsby Theme for WooCommerce E-commerce site Gatsby WooCommerce WordPress
Stars: ✭ 306 (-1.92%)
Mutual labels:  hacktoberfest
Code Sleep Python
Awesome Projects in Python - Machine Learning Applications, Games, Desktop Applications all in Python 🐍
Stars: ✭ 306 (-1.92%)
Mutual labels:  hacktoberfest
Altair
✨⚑️ A beautiful feature-rich GraphQL Client for all platforms.
Stars: ✭ 3,827 (+1126.6%)
Mutual labels:  hacktoberfest
Finance
A self hosted app to help you get a better understanding of your personal finances.
Stars: ✭ 313 (+0.32%)
Mutual labels:  hacktoberfest
Physx Rs
🎳 Rust binding and wrapper over NVIDIA PhysX πŸ¦€
Stars: ✭ 310 (-0.64%)
Mutual labels:  hacktoberfest
Gerador Validador Cpf
Biblioteca JS open-source para gerar e validar CPF.
Stars: ✭ 312 (+0%)
Mutual labels:  hacktoberfest
Submitty
Homework Submission, Automated Grading, and TA grading system.
Stars: ✭ 311 (-0.32%)
Mutual labels:  hacktoberfest
Openboxes
OpenBoxes is a supply chain management system designed to manage inventory and track stock movements for healthcare facilities.
Stars: ✭ 309 (-0.96%)
Mutual labels:  hacktoberfest
Openhospital
Open Hospital is a free and open source software for healthcare data management. This repository is used to build its releases.
Stars: ✭ 312 (+0%)
Mutual labels:  hacktoberfest
Cucumber
A monorepo of common components - building blocks for implementing Cucumber in various languages.
Stars: ✭ 3,299 (+957.37%)
Mutual labels:  hacktoberfest
Grabana
User-friendly Go library for building Grafana dashboards
Stars: ✭ 313 (+0.32%)
Mutual labels:  hacktoberfest
Coala
coala provides a unified command-line interface for linting and fixing all your code, regardless of the programming languages you use.
Stars: ✭ 3,280 (+951.28%)
Mutual labels:  hacktoberfest
Carbon Components Angular
An Angular implementation of the Carbon Design System for IBM.
Stars: ✭ 310 (-0.64%)
Mutual labels:  hacktoberfest
Ghost Cli
CLI Tool for installing & updating Ghost
Stars: ✭ 313 (+0.32%)
Mutual labels:  hacktoberfest
Laravel Packer
Awesome Command Line Tool for speeding up your package creation.
Stars: ✭ 313 (+0.32%)
Mutual labels:  hacktoberfest
Jackson Modules Java8
Set of support modules for Java 8 datatypes (Optionals, date/time) and features (parameter names)
Stars: ✭ 312 (+0%)
Mutual labels:  hacktoberfest

json2md

json2md

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

Buy Me A Coffee

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.

☁️ Installation

# Using npm
npm install --save json2md

# Using yarn
yarn add 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)
// ```

❓ 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. πŸ›
  3. For direct and quick help, you can use Codementor. πŸš€

πŸ“ Documentation

json2md(data, prefix)

Converts a JSON input to markdown.

Supported elements

Type Element Data Example
h1 Heading 1 The heading text as string. { h1: "heading 1" }
h2 Heading 2 The heading text as string. { h2: "heading 2" }
h3 Heading 3 The heading text as string. { h3: "heading 3" }
h4 Heading 4 The heading text as string. { h4: "heading 4" }
h5 Heading 5 The heading text as string. { h5: "heading 5" }
h6 Heading 6 The heading text as string. { h6: "heading 6" }
p Paragraphs The paragraph text as string or array (multiple paragraphs). { p: "Hello World"} or multiple paragraphs: { p: ["Hello", "World"] }
blockquote Blockquote The blockquote as string or array (multiple blockquotes) { blockquote: "Hello World"} or multiple blockquotes: { blockquote: ["Hello", "World"] }
img Image An 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" } }
ul Unordered list An array of strings or lists representing the items. { ul: ["item 1", "item 2"] }
ol Ordered list An array of strings or lists representing the items. { ol: ["item 1", "item 2"] }
hr Separator None { hr: "" }
code Code block element An object containing the language (String) and content (Array or String) fields. { code: { "language": "html", "content": "<script src='dummy.js'></script>" } }
table Table An 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"]] } }
link Link An 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.

πŸ˜‹ How to contribute

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

πŸ’– 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 πŸš€

  • Buy me a bookβ€”I love books! I will remember you after years if you buy me one. 😁 πŸ“–

  • PayPalβ€”You can make one-time donations via PayPal. I'll probably buy a coffee 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

Thanks! ❀️

πŸ’« Where is this library used?

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

  • @sidneys/releasenotes
  • @microfleet/schema2md
  • @cypress/schema-tools
  • @best/github-integration
  • lambda-docs-2md
  • jumia-travel-changelog
  • @cobalt-engine/change-logger
  • uxcore-tools
  • @best/store
  • p2doc
  • pantheon_site_management
  • react-docgen-markdown
  • utterance-to-markdown
  • gitdox
  • doc-cli
  • terraform2md
  • component-docs-2md
  • reposier
  • bookmark2md
  • rap2doc
  • make-postgres-markdown
  • describe-dependencies
  • gridsome-source-google-docs
  • kbase-components
  • @dschau/gatsby-source-google-docs
  • gatsby-source-google-docs-team
  • @shelex/schema-tools
  • mokker
  • postgres-markdown
  • joi-md-doc
  • rober19-config
  • solidity-benchmark
  • @bonitasoft/dependency-list-to-markdown
  • lggn
  • gatsby-source-google-docs-sheets
  • machine-ip
  • parse-google-docs-json
  • node-red-contrib-json2md
  • dokuinjs
  • lab-changelog
  • @bwagener/gridsome-source-google-docs
  • asm-auto-deploy
  • type-graphql-to-md
  • @gracexwho/model-card-generator
  • gatsby-source-google-docs
  • @e2y/bdd-dictionary-generator
  • @s-ui/changelog
  • dargstack_rgen
  • @feizheng/react-markdown-props
  • @jswork/react-markdown-propsI am using this library to generate documentation for my projects, being integrated with blah.

πŸ“œ License

MIT © Ionică Bizău

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].