{"id":14062672,"url":"https://github.com/702573N/Obsidian-Notes-List","last_synced_at":"2025-07-29T14:31:07.790Z","repository":{"id":252897183,"uuid":"552356513","full_name":"702573N/Obsidian-Notes-List","owner":"702573N","description":"Dataview Snippet To Show Notes In Different List Views","archived":false,"fork":false,"pushed_at":"2024-08-20T16:00:23.000Z","size":24,"stargazers_count":77,"open_issues_count":4,"forks_count":3,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-04-08T03:42:12.897Z","etag":null,"topics":["listview","notes","obsidian-md","obsidian-plugin"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/702573N.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-16T12:10:45.000Z","updated_at":"2025-03-24T01:06:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"53f6af17-b618-4c5e-be1c-9ad9011b7729","html_url":"https://github.com/702573N/Obsidian-Notes-List","commit_stats":null,"previous_names":["702573n/obsidian-notes-list"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/702573N/Obsidian-Notes-List","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/702573N%2FObsidian-Notes-List","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/702573N%2FObsidian-Notes-List/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/702573N%2FObsidian-Notes-List/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/702573N%2FObsidian-Notes-List/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/702573N","download_url":"https://codeload.github.com/702573N/Obsidian-Notes-List/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/702573N%2FObsidian-Notes-List/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267702885,"owners_count":24130463,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["listview","notes","obsidian-md","obsidian-plugin"],"created_at":"2024-08-13T07:01:44.008Z","updated_at":"2025-07-29T14:31:07.781Z","avatar_url":"https://github.com/702573N.png","language":"CSS","funding_links":[],"categories":["CSS"],"sub_categories":[],"readme":"# Obsidian-Notes-List\nDataview Snippet To Show Notes In Different List Views\n\n## Story\nAll Obsidian users switched from some other note-taking programme (such as Evernote, Apple Notes, Standard Notes, Bear Notes) to Obsidian. When switching, many users lack a list of all notes with a small excerpt of the text and, if applicable, a thumbnail image. This Dataview snippet makes it possible to retrofit this missing view with a single line of code. All that is needed is the Dataview plugin.\n\n## Setup\n1.  Install \"Dataview Plugin\" from the external plugins\n2.  Create a new folder called \"notesList\" or any other name and paste the files \"view.js\" and \"view.css\" into it\n\n    \u003cimg width=\"205\" alt=\"Bildschirm­foto 2022-10-16 um 14 25 00\" src=\"https://user-images.githubusercontent.com/59178587/196035303-72d032a9-09b2-4c98-9afa-c2b835a2b107.png\"\u003e\n\n3.  Create a new note or edit an existing one and add the following code line:\n\n    ````\n    ```dataviewjs\n    dv.view(\"notesList\", {pages: \"\", view: \"normal\"})\n    ```\n    ````\n    \n    If you paste the main files (js/css) into another folder then \"notesList\", you have to replace the name between the first quotation marks.\n \n 4. There are 2 different variables to set path/location as \"pages\", list view style as \"view\".\n\n---\n### pages:\n```\npages: \"\"\n```\nGet all notes in obsidian.\n\n```\npages: \"Notes/Theology\"\n```\nSet a custom folder to get notes from.\n    \n---\n### view:\n```\nview: \"normal\"\n```\nList view with small text preview and a preview of all attachments below like in Bear.\n\n```\nview: \"compact\"\n```\nList view with small text preview and a preview of the first attachment inside the note.\n\n```\nview: \"cards\"\n```\nList view with small cards of each note including small text preview and a preview of the first attachment inside the note.\n    \n---\n\n## Impressions\n\n### Normal View\n\u003cimg width=\"711\" alt=\"Bildschirm­foto 2022-10-16 um 14 16 45\" src=\"https://user-images.githubusercontent.com/59178587/196035529-cc727ad6-36e4-4085-a6b9-65dd2091f3f9.png\"\u003e\n\n---\n\n### Compact View\n\u003cimg width=\"703\" alt=\"Bildschirm­foto 2022-10-16 um 14 17 41\" src=\"https://user-images.githubusercontent.com/59178587/196035534-8da3fd4e-646f-4f75-a8d4-544f44147aea.png\"\u003e\n\n---\n\n### Cards View\n\u003cimg width=\"672\" alt=\"Bildschirm­foto 2022-10-16 um 14 18 18\" src=\"https://user-images.githubusercontent.com/59178587/196035541-e28b89fe-3cd7-4f80-a3dd-6b258082710d.png\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F702573N%2FObsidian-Notes-List","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F702573N%2FObsidian-Notes-List","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F702573N%2FObsidian-Notes-List/lists"}