Skip to content

Commit

Permalink
Merge pull request #3 from dario-baumberger/feature/update-node-20
Browse files Browse the repository at this point in the history
Feature/update node 20
  • Loading branch information
dario-baumberger authored Feb 6, 2024
2 parents a7d3a0f + 3a8293c commit 2a762f2
Show file tree
Hide file tree
Showing 6 changed files with 1,106 additions and 5,089 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18.x"
node-version: "20.x"

- name: Build plugin
run: |
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ Generate a table from a JSON string or a URL (which returns JSON) in your notes.

## Commands

| Command | Description |
| ------------------------------------- | -------------------------------------------------------------------------------------------------- |
| Generate table from selected JSON | Creates a Markdown table based on your selected JSON. The JSON needs to be valid. |
| Generate table from selected JSON URL | Creates a Markdown table based on JSON data from selected URL. The URL needs to return valid JSON. |
| Generate JSON from a selected table | Creatse JSON based on your selected table. |
| Command | Description |
| ------------------------------------- | ---------------------------------------------------------------------------------------------------- |
| Generate table from selected JSON | Creates a Markdown table based on your selected JSON. The JSON needs to be valid. |
| 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. |
| Generate JSON from a selected table | Creates JSON based on your selected table. |

### Examples

Expand Down Expand Up @@ -50,7 +50,7 @@ Generate a table from a JSON string or a URL (which returns JSON) in your notes.
### Community Plugin

- Follow this link [Obsidian Plugin](https://obsidian.md/plugins?id=json-table)
- Or open Obsidian Settings, go to Community Plugins, browse "JSON Table" click install and activte.
- Or open Obsidian Settings, go to Community Plugins, browse "JSON Table" click install and activate.

### Manually installing the plugin

Expand All @@ -62,4 +62,4 @@ Generate a table from a JSON string or a URL (which returns JSON) in your notes.

- Feel free to [open an issue](https://github.com/dario-baumberger/obsidian-json-table/issues) if you miss something
- Feel free to open a Pull request to implement a feature
- Please extend tests if you ad logic
- Please extend tests if you add logic
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"authorUrl": "https://github.com/dario-baumberger",
"fundingUrl": "https://www.buymeacoffee.com/dariobaumberger",
"isDesktopOnly": false
}
}
Loading

0 comments on commit 2a762f2

Please sign in to comment.