forked from Edikoyo/EdikoyoWiki
vault backup: 2024-09-06 23:01:42
This commit is contained in:
parent
c55be33378
commit
460ba59c5e
6 changed files with 69 additions and 11 deletions
3
Edikoyo/.obsidian/community-plugins.json
vendored
3
Edikoyo/.obsidian/community-plugins.json
vendored
|
@ -3,5 +3,6 @@
|
|||
"iconic",
|
||||
"better-word-count",
|
||||
"obsidian-linter",
|
||||
"dataview"
|
||||
"dataview",
|
||||
"dataview-serializer"
|
||||
]
|
30
Edikoyo/.obsidian/plugins/dataview-serializer/main.js
vendored
Normal file
30
Edikoyo/.obsidian/plugins/dataview-serializer/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
Edikoyo/.obsidian/plugins/dataview-serializer/manifest.json
vendored
Normal file
11
Edikoyo/.obsidian/plugins/dataview-serializer/manifest.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "dataview-serializer",
|
||||
"name": "Dataview Serializer",
|
||||
"description": "Serialize Dataview queries to Markdown, and keep the Markdown representation up to date.",
|
||||
"version": "1.3.0",
|
||||
"minAppVersion": "0.15.0",
|
||||
"isDesktopOnly": false,
|
||||
"author": "Sébastien Dubois",
|
||||
"authorUrl": "https://dsebastien.net",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/dsebastien"
|
||||
}
|
4
Edikoyo/.obsidian/plugins/dataview-serializer/styles.css
vendored
Normal file
4
Edikoyo/.obsidian/plugins/dataview-serializer/styles.css
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
/* Plugin Styles */
|
||||
.support-header-margin {
|
||||
margin-top: 0.75rem;
|
||||
}
|
|
@ -1,6 +1,11 @@
|
|||
<!-- QueryToSerialize: TABLE short as "Short" FROM "Countries" WHERE file.name != "_index" -->
|
||||
<!-- SerializedQuery: TABLE short as "Short" FROM "Countries" WHERE file.name != "_index" -->
|
||||
|
||||
```dataview
|
||||
TABLE short
|
||||
FROM "Countries"
|
||||
WHERE file.name != "_index"
|
||||
```
|
||||
| File | Short |
|
||||
| ----------------------------------------- | -------------------- |
|
||||
| [[Barrowmaw]] | \- |
|
||||
| [[Blanchister]] | \- |
|
||||
| [[Batanoka]] | \- |
|
||||
| [[Dasona]] | The Country of Hopes |
|
||||
| [[Drenvale]] | \- |
|
||||
<!-- SerializedQuery END -->
|
||||
|
|
|
@ -1,9 +1,16 @@
|
|||
---
|
||||
---
|
||||
|
||||
<!-- QueryToSerialize: TABLE short as "Short" FROM "Countries" WHERE file.name != "_index" -->
|
||||
<!-- SerializedQuery: TABLE short as "Short" FROM "Countries" WHERE file.name != "_index" -->
|
||||
|
||||
|File|Short|
|
||||
|----|-----|
|
||||
|[Barrowmaw](Barrowmaw.md)|-|
|
||||
|[Blanchister](Blanchister.md)|-|
|
||||
|[Batanoka](Batanoka.md)|-|
|
||||
|[Dasona](Dasona.md)|The Country of Hopes|
|
||||
|[Drenvale](Drenvale.md)|-|
|
||||
|
||||
<!-- SerializedQuery END -->
|
||||
|
||||
````dataview
|
||||
TABLE short
|
||||
FROM "Countries"
|
||||
WHERE file.name != "_index"
|
||||
````
|
||||
|
|
Loading…
Reference in a new issue