├── .github └── workflows │ └── label.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── requirements.txt ├── src ├── created.py ├── helpers.py └── modified.py └── test-vault ├── A file.md └── A folder └── A file with no metadata.md /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-frontmatter -------------------------------------------------------------------------------- /src/created.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/src/created.py -------------------------------------------------------------------------------- /src/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/src/helpers.py -------------------------------------------------------------------------------- /src/modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/src/modified.py -------------------------------------------------------------------------------- /test-vault/A file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/test-vault/A file.md -------------------------------------------------------------------------------- /test-vault/A folder/A file with no metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomodachi94/obsidian-metadata-handler/HEAD/test-vault/A folder/A file with no metadata.md --------------------------------------------------------------------------------