Skip to content

Commit

Permalink
Fix: Irregular Action regex.source.ps1 support ( Fixes #236 )
Browse files Browse the repository at this point in the history
  • Loading branch information
James Brundage committed Sep 22, 2024
2 parents 0b871c5 + ccd8e1e commit 5d6704e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Once you understand some basics of that syntax, regular expressions become a lot
3. A Regex can have comments! ( # Like this in .NET ( or like (?#this comment) in ECMAScript ) ).
4. You don't have to do it all in one expression!

Irregular comes with 146 useful [named expressions](SavedPatterns.md), and lets you create more.
Irregular comes with 145 useful [named expressions](SavedPatterns.md), and lets you create more.

To see the expressions that ship with Irregular, run:

Expand Down
6 changes: 3 additions & 3 deletions RegEx/Console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ Note: Using these regular expressions in the terminal may result in awkward out
|[?<Console_4BitColor>](4BitColor.regex.txt) |Matches an ANSI 3 or 4-bit color |[source](4BitColor.regex.source.ps1) |
|[?<Console_8BitColor>](8BitColor.regex.txt) |Matches an ANSI 8-bit color |[source](8BitColor.regex.source.ps1) |
|[?<Console_Blink>](Blink.regex.txt) |Matches ANSI Blink Start or End |[source](Blink.regex.source.ps1) |
|[?<Console_Bold>](Bold.regex.txt) |Matches an ANSI Bold (aka bright) Start or End |[source](Bold.regex.source.ps1) |
|[?<Console_Bold>](Bold.regex.txt) |Matches an ANSI Bold Start or End |[source](Bold.regex.source.ps1) |
|[?<Console_Code>](Code.regex.txt) |Matches an ANSI escape code |[source](Code.regex.source.ps1) |
|[?<Console_Color>](Color.regex.txt) |Matches an ANSI color |[source](Color.regex.source.ps1) |
|[?<Console_Cursor>](Cursor.regex.txt) |Matches an ANSI cursor control |[source](Cursor.regex.source.ps1) |
|[?<Console_DefaultColor>](DefaultColor.regex.txt) |Matches an ANSI default color |[source](DefaultColor.regex.source.ps1) |
|[?<Console_DefaultColor>](DefaultColor.regex.txt) |Matches an ANSI 24-bit color |[source](DefaultColor.regex.source.ps1) |
|[?<Console_Faint>](Faint.regex.txt) |Matches an ANSI Faint (aka dim) Start or End |[source](Faint.regex.source.ps1) |
|[?<Console_Hide>](Hide.regex.txt) |Matches ANSI Hide (aka conceal) Start or End |[source](Hide.regex.source.ps1) |
|[?<Console_Invert>](Invert.regex.txt) |Matches ANSI Invert Start or End |[source](Invert.regex.source.ps1) |
|[?<Console_Italic>](Italic.regex.txt) |Matches ANSI Italic Start or End |[source](Italic.regex.source.ps1) |
|[?<Console_Link>](Link.regex.txt) |Matches ANSI Hyperlink |[source](Link.regex.source.ps1) |
|[?<Console_Note>](Note.regex.txt) |Matches an ANSI VT520 Note |[source](Note.regex.source.ps1) |
|[?<Console_Reset>](Reset.regex.txt) |Matches an ANSI Reset (this clears formatting) |[source](Reset.regex.source.ps1) |
|[?<Console_Strikethrough>](Strikethrough.regex.txt)|Matches ANSI Strikethrough (aka crossed out) Start or End |[source](Strikethrough.regex.source.ps1)|
|[?<Console_Strikethrough>](Strikethrough.regex.txt)|Matches ANSI Strikethrough Start or End |[source](Strikethrough.regex.source.ps1)|
|[?<Console_Style>](Style.regex.txt) |Matches an ANSI style (color or text option) |[source](Style.regex.source.ps1) |
|[?<Console_Underline>](Underline.regex.txt) |Matches ANSI Underline/DoubleUnderline Start or Underline End|[source](Underline.regex.source.ps1) |

Expand Down
4 changes: 2 additions & 2 deletions RegEx/OpenSCAD/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ This directory contains Regular Expressions for [OpenSCAD](https://openscad.org/
|----------------------------------------------------|---------------------------------------------|-----------|
|[?<OpenSCAD_Customization>](Customization.regex.txt)|Matches Potential Open SCAD Customizations |False |
|[?<OpenSCAD_Function>](Function.regex.txt) |Matches Open SCAD Functions |False |
|[?<OpenSCAD_Include>](Include.regex.txt) |Matches Open SCAD Include statements |False |
|[?<OpenSCAD_Include>](Include.regex.txt) |Matches Open SCAD Modules |False |
|[?<OpenSCAD_Module>](Module.regex.txt) |Matches Open SCAD Modules |False |
|[?<OpenSCAD_Parameter>](Parameter.regex.txt) |Matches Potential Open SCAD Module Parameters|False |
|[?<OpenSCAD_Use>](Use.regex.txt) |Matches OpenSCAD Use statements |False |
|[?<OpenSCAD_Use>](Use.regex.txt) |Matches Open SCAD Modules |False |


2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Once you understand some basics of that syntax, regular expressions become a lot
3. A Regex can have comments! ( # Like this in .NET ( or like (?#this comment) in ECMAScript ) ).
4. You don't have to do it all in one expression!

Irregular comes with 146 useful [named expressions](SavedPatterns.md), and lets you create more.
Irregular comes with 145 useful [named expressions](SavedPatterns.md), and lets you create more.

To see the expressions that ship with Irregular, run:

Expand Down

0 comments on commit 5d6704e

Please sign in to comment.