옵시디언의 Dataview플러그인을 이용해 post-url 속성이 입력된 글을 필터링 해서 포스팅 파일을 확인하려합니다.
Shared to NotionNext 플러그인을 이용해 노션에 동기화중이기 때문에 NotionID로 시작하는 속성을 가진 파일로도 추려볼수 있습니다.
post-url이 설정되었거나 NotionID가 있는 파일
post-url 값이 입력되었거나(값이 비었을경우 해당안됨), NotionID로 시작하는 속성명이 있는 파일.
수동으로 올린경우 NotionID는 없을수도 있음.
```dataview table post-url, NotionID-randompostdb as random, NotionID-devpostdb as dev, NotionID-biomedicalpostdb as bio, NotionID-web3cryptopostdb as web3 where post-url or NotionID-randompostdb or NotionID-devpostdb or NotionID-biomedicalpostdb or NotionID-web3cryptopostdb ```
Journal/2024 폴더내에 위크or데일리 파일이 아닌것
파일명에
2024
가 포함되지 않은 파일```dataview table file.path from "Journal/2024" where !containsword(file.name,"2024") ```
#blog 태그 파일
```dataview list from #blog ```
#tool 태그이면서 #obsidian 태그가 아닌 파일
tag속성에 추가된 태그가 아니어도 출력
```dataview table tags from #tool and -#obsidian ```