-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
As a user, I want to be able to add regex values to the input
param so that I don't have to manually write out every single file in the manifest. Examples:
Any file in the current directory starting with module-
input:
frontmatter: ""
module-*: {noYAML: true}
Any file in the current directory starting with a number
input:
frontmatter: ""
^[0-9]: {noYAML: true}
Any file in the current directory ending with a word
input:
frontmatter: ""
word$: {noYAML: true}
Any file in module/
ending in -chapter.md
input:
/(?<=module/).*(?=-chapter.md)/g: ""
module-*: {noYAML: true}
Metadata
Metadata
Assignees
Labels
No labels