Skip to content

Regex for input #29

@knennigtri

Description

@knennigtri

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions