JSON table

approved

by Dario Baumberger

Simply switch between JSON and tables. Generate a table from a JSON string or a URL (which returns JSON) in your notes. Generate JSON from a table in your notes.

27 stars7,416 downloadsUpdated 6mo agoMIT
View on GitHub

Build and Test Obsidian Downloads GitHub stars License: MIT

Obsidian JSON table

Simply switch between JSON and tables.

Generate a table from a JSON string or a URL (which returns JSON) in your notes. Generate JSON from a table in your notes.

Commands

CommandDescription
Generate table from selected JSONCreates a Markdown table based on your selected JSON. The JSON needs to be valid.
Generate table from selected JSON URLCreates a Markdown table based on JSON data from selected URL. The URL needs to return a valid JSON.
Generate JSON from a selected tableCreates JSON based on your selected table.

Examples

Table

| Name | Age | City   |
| ---- | --- | ------ |
| Doe  | 22  | Berlin |
| Pan  | 34  | Mumbai |

Table to JSON

JSON

[{"Name":"Doe","Age":"22","City":"Berlin"},{"Name":"Pan","Age":"34","City":"Mumbai"}]

JSON to Table

URL

  • https://raw.githubusercontent.com/dario-baumberger/obsidian-json-table/master/demo/example.json
  • https://jsonplaceholder.typicode.com/todos

URL to Table

Installation

Community Plugin

  • Follow this link Obsidian Plugin
  • Or open Obsidian Settings, go to Community Plugins, browse "JSON Table" click install and activate.

Manually installing the plugin

  • Go to the latest Releases
  • Download main.js, manifest.json
  • save into your vault VaultFolder/.obsidian/plugins/obsidian-json-to-table/

Contribution

  • Feel free to open an issue if you miss something
  • Feel free to open a Pull request to implement a feature
    • Please extend tests if you add logic

For plugin developers

Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.

JSON table | SimilarPlugins