Home > Back-end >  How should I convert my JSON file to Markdown file
How should I convert my JSON file to Markdown file

Time:01-19

JSON File

{
  "1": {
    "name": "Aniket",
    "age": 23
  },
  "2": {
    "name": "Ayush",
    "age": 22
  }
}

I just want to use JSON data in the ReadMe file of the GitHub repo.

CodePudding user response:

You can convert the JSON data to a markdown table format by using a tool like: https://www.tablesgenerator.com/markdown_tables

CodePudding user response:

After search too much on the websites I decided to create my own project...

Then created my own repo for converting the JSON file to Markdown File https://github.com/dev-aniketj/JSONToMarkdown-ReactJS

  • Related