generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 💥 pnpm -> deno * fixup! 💥 pnpm -> deno --------- Co-authored-by: ras0q <[email protected]>
- Loading branch information
Showing
20 changed files
with
262 additions
and
689 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,5 @@ | ||
# Intellij | ||
*.iml | ||
.idea | ||
|
||
# npm | ||
node_modules | ||
.DS_Store | ||
|
||
# Don't include the compiled main.js file in the repo. | ||
# They should be uploaded to GitHub releases instead. | ||
main.js | ||
|
||
# Exclude sourcemaps | ||
*.map | ||
|
||
# obsidian | ||
data.json | ||
|
||
# Exclude macOS Finder (System Explorer) View States | ||
.DS_Store | ||
main.js |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"recommendations": ["biomejs.biome"] | ||
"recommendations": ["denoland.vscode-deno"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,23 @@ | ||
{ | ||
"[javascript][typescript][json]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"biome.enabled": true, | ||
"editor.codeActionsOnSave": { | ||
"quickfix.biome": "explicit", | ||
"source.organizeImports.biome": "explicit" | ||
} | ||
"[css]": { | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
}, | ||
"[markdown]": { | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
}, | ||
"[yaml]": { | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
}, | ||
"deno.enable": true, | ||
"deno.lint": true, | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,27 @@ | ||
# Graph Banner | ||
|
||
[![release](https://img.shields.io/github/manifest-json/v/ras0q/obsidian-graph-banner.svg?color=A68AF9&style=for-the-badge&logo=github)](https://github.com/ras0q/obsidian-graph-banner/releases/latest) [![downloads](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/obsidianmd/obsidian-releases/master/community-plugin-stats.json&query=$['graph-banner'].downloads&label=Downloads&color=A68AF9&style=for-the-badge&logo=obsidian& | ||
)](https://obsidian.md/plugins?id=graph-banner) | ||
[![release](https://img.shields.io/github/manifest-json/v/ras0q/obsidian-graph-banner.svg?color=A68AF9&style=for-the-badge&logo=github)](https://github.com/ras0q/obsidian-graph-banner/releases/latest) | ||
[![downloads](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/obsidianmd/obsidian-releases/master/community-plugin-stats.json&query=$['graph-banner'].downloads&label=Downloads&color=A68AF9&style=for-the-badge&logo=obsidian&)](https://obsidian.md/plugins?id=graph-banner) | ||
|
||
An [Obsidian](https://obsidian.md/) plugin to display a local graph view to the note header. | ||
An [Obsidian](https://obsidian.md/) plugin to display a local graph view to the | ||
note header. | ||
|
||
![screenshot thumbnail](./thumbnail.png) | ||
|
||
This screenshot was generated using [s-blu/obsidian_dataview_example_vault](https://github.com/s-blu/obsidian_dataview_example_vault) | ||
This screenshot was generated using | ||
[s-blu/obsidian_dataview_example_vault](https://github.com/s-blu/obsidian_dataview_example_vault) | ||
|
||
## Usage | ||
|
||
1. **[Install](https://obsidian.md/plugins?id=graph-banner)** and **enable** the plugin. | ||
1. **[Install](https://obsidian.md/plugins?id=graph-banner)** and **enable** the | ||
plugin. | ||
2. **Just open a note** and the graph will be displayed in the header! | ||
|
||
> [!TIP] | ||
> | ||
> - You can customize the banner appearance via [Style Settings](https://github.com/mgmeyers/obsidian-style-setting) plugin. | ||
> - You can save the local graph settings via [Sync Graph Settings](https://github.com/Xallt/sync-graph-settings) plugin. | ||
> - **Graph settings synchronizatoin is only reflected the first time you open a note**, so reload the app if you change those settings. | ||
> - You can customize the banner appearance via | ||
> [Style Settings](https://github.com/mgmeyers/obsidian-style-setting) plugin. | ||
> - You can save the local graph settings via | ||
> [Sync Graph Settings](https://github.com/Xallt/sync-graph-settings) plugin. | ||
> - **Graph settings synchronizatoin is only reflected the first time you open | ||
> a note**, so reload the app if you change those settings. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"compilerOptions": { | ||
"lib": [ | ||
"deno.window", | ||
"dom" | ||
] | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
"main.js" | ||
], | ||
"fmt": { | ||
"useTabs": true | ||
}, | ||
"imports": { | ||
"esbuild": "npm:[email protected]", | ||
"ignore": "npm:[email protected]", | ||
"obsidian": "npm:[email protected]" | ||
}, | ||
"nodeModulesDir": "auto", | ||
"tasks": { | ||
"build": "esbuild ./src/main.ts --bundle --external:obsidian --format=cjs --minify --target=es6 --outfile=./main.js", | ||
"dev": "esbuild ./src/main.ts --watch --bundle --external:obsidian --format=cjs --target=es6 --sourcemap=inline --outfile=./main.js" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.