generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: save and load templates to settings
convert templates to and from string edit the template in the UI
- Loading branch information
1 parent
55d3180
commit f685533
Showing
7 changed files
with
85 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Output, array, literal, object, string, union } from "valibot"; | ||
|
||
const TemplateTextSchema = object({ | ||
_tag: literal("text"), | ||
value: string(), | ||
}); | ||
|
||
const TemplateVariableSchema = object({ | ||
_tag: literal("variable"), | ||
value: string(), | ||
}); | ||
|
||
export const ParsedTemplateSchema = array(union([TemplateTextSchema, TemplateVariableSchema])) | ||
|
||
export type TemplateText = Output<typeof TemplateTextSchema>; | ||
export type TemplateVariable = Output<typeof TemplateVariableSchema>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters