├── .all-contributorsrc ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── changelog-configuration.json ├── dependabot.yml ├── labeler.yml └── workflows │ ├── cache-clean.yml │ ├── deploy-clean.yml │ ├── gpg-tests.yml │ ├── history-clean.yml │ ├── issues-accept.yml │ ├── issues-new.yml │ ├── issues-scan.yml │ ├── issues-stale.yml │ ├── labels-clean.yml │ ├── labels-create.yml │ ├── ping-developer.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Snippets ├── Alphabetized List 1 │ ├── README.md │ └── images │ │ ├── example_1.gif │ │ ├── example_2.gif │ │ ├── example_3.gif │ │ ├── example_4.gif │ │ ├── example_5.gif │ │ ├── install_1.gif │ │ ├── install_2.png │ │ └── install_3.gif ├── Alphabetized List 2 │ └── code.txt ├── Bad Links 1 │ ├── README.md │ └── images │ │ ├── example_1.png │ │ ├── example_2.gif │ │ ├── example_3.gif │ │ ├── example_4.gif │ │ ├── example_5.gif │ │ ├── install_1.gif │ │ ├── install_2.png │ │ └── install_3.gif ├── Page Cloud 1 │ ├── README.md │ └── images │ │ ├── example_1.gif │ │ ├── install_1.gif │ │ ├── install_2.png │ │ ├── install_3.gif │ │ └── install_4.gif ├── Subfolder Data │ ├── README.md │ ├── images │ │ ├── example_1.gif │ │ ├── install_1.gif │ │ ├── install_2.png │ │ └── install_3.gif │ └── snippet-version3 ├── TOC Version 1 │ ├── README.md │ └── images │ │ ├── example_1.gif │ │ ├── install_1.gif │ │ ├── install_2.png │ │ └── install_3.gif ├── TOC Version 2 │ ├── README.md │ └── images │ │ ├── example_1.gif │ │ ├── install_1.gif │ │ ├── install_2.png │ │ └── install_3.gif ├── Tag Cloud 1 │ ├── README.md │ └── images │ │ ├── example_1.gif │ │ ├── install_1.gif │ │ ├── install_2.png │ │ └── install_3.gif └── Tag Cloud 2 │ ├── README.md │ └── images │ ├── example_1.gif │ ├── install_1.gif │ ├── install_2.png │ ├── install_3.gif │ └── install_4.gif ├── eslint.config.js ├── obs.js └── package.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/changelog-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/changelog-configuration.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/cache-clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/cache-clean.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/deploy-clean.yml -------------------------------------------------------------------------------- /.github/workflows/gpg-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/gpg-tests.yml -------------------------------------------------------------------------------- /.github/workflows/history-clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/history-clean.yml -------------------------------------------------------------------------------- /.github/workflows/issues-accept.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/issues-accept.yml -------------------------------------------------------------------------------- /.github/workflows/issues-new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/issues-new.yml -------------------------------------------------------------------------------- /.github/workflows/issues-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/issues-scan.yml -------------------------------------------------------------------------------- /.github/workflows/issues-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/issues-stale.yml -------------------------------------------------------------------------------- /.github/workflows/labels-clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/labels-clean.yml -------------------------------------------------------------------------------- /.github/workflows/labels-create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/labels-create.yml -------------------------------------------------------------------------------- /.github/workflows/ping-developer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/ping-developer.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/README.md -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/README.md -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/images/example_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/images/example_1.gif -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/images/example_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/images/example_2.gif -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/images/example_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/images/example_3.gif -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/images/example_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/images/example_4.gif -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/images/example_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/images/example_5.gif -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/images/install_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/images/install_1.gif -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/images/install_2.png -------------------------------------------------------------------------------- /Snippets/Alphabetized List 1/images/install_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 1/images/install_3.gif -------------------------------------------------------------------------------- /Snippets/Alphabetized List 2/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Alphabetized List 2/code.txt -------------------------------------------------------------------------------- /Snippets/Bad Links 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/README.md -------------------------------------------------------------------------------- /Snippets/Bad Links 1/images/example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/images/example_1.png -------------------------------------------------------------------------------- /Snippets/Bad Links 1/images/example_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/images/example_2.gif -------------------------------------------------------------------------------- /Snippets/Bad Links 1/images/example_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/images/example_3.gif -------------------------------------------------------------------------------- /Snippets/Bad Links 1/images/example_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/images/example_4.gif -------------------------------------------------------------------------------- /Snippets/Bad Links 1/images/example_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/images/example_5.gif -------------------------------------------------------------------------------- /Snippets/Bad Links 1/images/install_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/images/install_1.gif -------------------------------------------------------------------------------- /Snippets/Bad Links 1/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/images/install_2.png -------------------------------------------------------------------------------- /Snippets/Bad Links 1/images/install_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Bad Links 1/images/install_3.gif -------------------------------------------------------------------------------- /Snippets/Page Cloud 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Page Cloud 1/README.md -------------------------------------------------------------------------------- /Snippets/Page Cloud 1/images/example_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Page Cloud 1/images/example_1.gif -------------------------------------------------------------------------------- /Snippets/Page Cloud 1/images/install_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Page Cloud 1/images/install_1.gif -------------------------------------------------------------------------------- /Snippets/Page Cloud 1/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Page Cloud 1/images/install_2.png -------------------------------------------------------------------------------- /Snippets/Page Cloud 1/images/install_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Page Cloud 1/images/install_3.gif -------------------------------------------------------------------------------- /Snippets/Page Cloud 1/images/install_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Page Cloud 1/images/install_4.gif -------------------------------------------------------------------------------- /Snippets/Subfolder Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Subfolder Data/README.md -------------------------------------------------------------------------------- /Snippets/Subfolder Data/images/example_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Subfolder Data/images/example_1.gif -------------------------------------------------------------------------------- /Snippets/Subfolder Data/images/install_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Subfolder Data/images/install_1.gif -------------------------------------------------------------------------------- /Snippets/Subfolder Data/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Subfolder Data/images/install_2.png -------------------------------------------------------------------------------- /Snippets/Subfolder Data/images/install_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Subfolder Data/images/install_3.gif -------------------------------------------------------------------------------- /Snippets/Subfolder Data/snippet-version3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Subfolder Data/snippet-version3 -------------------------------------------------------------------------------- /Snippets/TOC Version 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 1/README.md -------------------------------------------------------------------------------- /Snippets/TOC Version 1/images/example_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 1/images/example_1.gif -------------------------------------------------------------------------------- /Snippets/TOC Version 1/images/install_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 1/images/install_1.gif -------------------------------------------------------------------------------- /Snippets/TOC Version 1/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 1/images/install_2.png -------------------------------------------------------------------------------- /Snippets/TOC Version 1/images/install_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 1/images/install_3.gif -------------------------------------------------------------------------------- /Snippets/TOC Version 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 2/README.md -------------------------------------------------------------------------------- /Snippets/TOC Version 2/images/example_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 2/images/example_1.gif -------------------------------------------------------------------------------- /Snippets/TOC Version 2/images/install_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 2/images/install_1.gif -------------------------------------------------------------------------------- /Snippets/TOC Version 2/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 2/images/install_2.png -------------------------------------------------------------------------------- /Snippets/TOC Version 2/images/install_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/TOC Version 2/images/install_3.gif -------------------------------------------------------------------------------- /Snippets/Tag Cloud 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 1/README.md -------------------------------------------------------------------------------- /Snippets/Tag Cloud 1/images/example_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 1/images/example_1.gif -------------------------------------------------------------------------------- /Snippets/Tag Cloud 1/images/install_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 1/images/install_1.gif -------------------------------------------------------------------------------- /Snippets/Tag Cloud 1/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 1/images/install_2.png -------------------------------------------------------------------------------- /Snippets/Tag Cloud 1/images/install_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 1/images/install_3.gif -------------------------------------------------------------------------------- /Snippets/Tag Cloud 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 2/README.md -------------------------------------------------------------------------------- /Snippets/Tag Cloud 2/images/example_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 2/images/example_1.gif -------------------------------------------------------------------------------- /Snippets/Tag Cloud 2/images/install_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 2/images/install_1.gif -------------------------------------------------------------------------------- /Snippets/Tag Cloud 2/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 2/images/install_2.png -------------------------------------------------------------------------------- /Snippets/Tag Cloud 2/images/install_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 2/images/install_3.gif -------------------------------------------------------------------------------- /Snippets/Tag Cloud 2/images/install_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/Snippets/Tag Cloud 2/images/install_4.gif -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/eslint.config.js -------------------------------------------------------------------------------- /obs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/obs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aetherinox/obsidian-dataview-snippets/HEAD/package.json --------------------------------------------------------------------------------