{"id":18936382,"url":"https://github.com/dario-baumberger/obsidian-json-table","last_synced_at":"2025-06-10T19:41:17.944Z","repository":{"id":200397495,"uuid":"705294001","full_name":"dario-baumberger/obsidian-json-table","owner":"dario-baumberger","description":"Simply switch between JSON and tables in your Obsidian notes.","archived":false,"fork":false,"pushed_at":"2024-05-22T18:35:47.000Z","size":5920,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-22T18:59:56.161Z","etag":null,"topics":["json","md","obisidian","obsidian-md","obsidian-plugin"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dario-baumberger.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":["https://www.buymeacoffee.com/dariobaumberger"]}},"created_at":"2023-10-15T16:04:26.000Z","updated_at":"2024-05-21T23:25:33.000Z","dependencies_parsed_at":"2023-11-07T08:28:13.184Z","dependency_job_id":"ad77f85b-6e32-48e0-a14a-84c44042d77e","html_url":"https://github.com/dario-baumberger/obsidian-json-table","commit_stats":null,"previous_names":["dario-baumberger/obsidian-json-to-table"],"tags_count":7,"template":false,"template_full_name":"obsidianmd/obsidian-sample-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dario-baumberger%2Fobsidian-json-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dario-baumberger%2Fobsidian-json-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dario-baumberger%2Fobsidian-json-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dario-baumberger%2Fobsidian-json-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dario-baumberger","download_url":"https://codeload.github.com/dario-baumberger/obsidian-json-table/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249129103,"owners_count":21217285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["json","md","obisidian","obsidian-md","obsidian-plugin"],"created_at":"2024-11-08T12:07:14.141Z","updated_at":"2025-04-15T18:31:29.072Z","avatar_url":"https://github.com/dario-baumberger.png","language":"TypeScript","funding_links":["https://www.buymeacoffee.com/dariobaumberger"],"categories":[],"sub_categories":[],"readme":"[![Build and Test](https://github.com/dario-baumberger/obsidian-json-table/actions/workflows/build.yml/badge.svg)](https://github.com/dario-baumberger/obsidian-json-table/actions/workflows/build.yml)\n[![Obsidian Downloads](https://img.shields.io/badge/dynamic/json?color=7e6ad6\u0026labelColor=34208c\u0026label=Obsidian%20Downloads\u0026query=$['json-table'].downloads\u0026url=https://raw.githubusercontent.com/obsidianmd/obsidian-releases/master/community-plugin-stats.json\u0026)](obsidian://show-plugin?id=json-table)\n![GitHub stars](https://img.shields.io/github/stars/dario-baumberger/obsidian-json-table?style=flat)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/dario-baumberger/obsidian-json-table/blob/master/LICENCE)\n\n# Obsidian JSON table\n\nSimply switch between JSON and tables.\n\nGenerate a table from a JSON string or a URL (which returns JSON) in your notes. Generate JSON from a table in your notes.\n\n## Commands\n\n| Command                               | Description                                                                                          |\n| ------------------------------------- | ---------------------------------------------------------------------------------------------------- |\n| Generate table from selected JSON     | Creates a Markdown table based on your selected JSON. The JSON needs to be valid.                    |\n| Generate table from selected JSON URL | Creates a Markdown table based on JSON data from selected URL. The URL needs to return a valid JSON. |\n| Generate JSON from a selected table   | Creates JSON based on your selected table.                                                           |\n\n### Examples\n\n#### Table\n\n```\n| Name | Age | City   |\n| ---- | --- | ------ |\n| Doe  | 22  | Berlin |\n| Pan  | 34  | Mumbai |\n```\n\n![Table to JSON](demo/table-to-json.gif)\n\n#### JSON\n\n```\n[{\"Name\":\"Doe\",\"Age\":\"22\",\"City\":\"Berlin\"},{\"Name\":\"Pan\",\"Age\":\"34\",\"City\":\"Mumbai\"}]\n```\n\n![JSON to Table](demo/json-to-table.gif)\n\n#### URL\n\n-   `https://raw.githubusercontent.com/dario-baumberger/obsidian-json-table/master/demo/example.json`\n-   `https://jsonplaceholder.typicode.com/todos`\n\n![URL to Table](demo/url-to-table.gif)\n\n## Installation\n\n### Community Plugin\n\n-   Follow this link [Obsidian Plugin](https://obsidian.md/plugins?id=json-table)\n-   Or open Obsidian Settings, go to Community Plugins, browse \"JSON Table\" click install and activate.\n\n### Manually installing the plugin\n\n-   Go to the latest [Releases](https://github.com/dario-baumberger/obsidian-json-table/releases)\n-   Download `main.js`, `manifest.json`\n-   save into your vault `VaultFolder/.obsidian/plugins/obsidian-json-to-table/`\n\n## Contribution\n\n-   Feel free to [open an issue](https://github.com/dario-baumberger/obsidian-json-table/issues) if you miss something\n-   Feel free to open a Pull request to implement a feature\n    -   Please extend tests if you add logic\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdario-baumberger%2Fobsidian-json-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdario-baumberger%2Fobsidian-json-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdario-baumberger%2Fobsidian-json-table/lists"}