hananoshikayomaru2k downloadsRule based keep track of your incomplete files.
This plugin help discover your incomplete files base on given rules.
✅ Powerful, Dead Simple
Demo: https://www.youtube.com/watch?v=GO3N-IdBNVA&ab_channel=YomaruHananoshika
| rule name | description | DEFAULT |
|---|---|---|
| EMTPY CONTENT | This rule cannot be turned off. When the file has no content, it is treaded as incomplete. | ✅ |
| EMPTY CONTENT HEADING | When a heading has no content, it is treated as incomplete. | ✅ |
| INCOMPLETE STNTAX | When a file has the incomplete syntax, it is treated as incomplete. The incomplete syntax is %% INCOMPLETE(issue which is a string) %% or %% INCOMPLETE %% |
✅ |
You can install this plugin in the community plugin store. 👍
.obsidian/pluginscd obsidian-incomplete-files && bun install && bun run buildINCOMPLETE_ISSUE_TYPEsettingSchemas.tsexport const issueScanners = [
checkEmptyContent,
checkEmptyContentHeading,
checkIncompleteSyntax,
];
// this is the interface you can refer to
export type IssueScanner = {
issueType: INCOMPLETE_ISSUE_TYPE;
func: ScanFunction;
icon: string;
setting: {
name: string;
description: string;
default: boolean;
};
};
If you are enjoying this plugin then please support my work and enthusiasm by sponsoring me on Github or buying me a coffee on https://www.buymeacoffee.com/yomaru.