@@ -2,42 +2,42 @@ These are all of the transpilers currently included in PipeScript:
22
33
44
5- | Language | Synopsis | Pattern |
6- | ---------------------------------------| ----------------------------------------| --------------------------------|
7- | [ ADA] ( Inline.ADA.psx.ps1 ) | ADA PipeScript Transpiler. | ``` \.ad[bs]$ ``` |
8- | [ ATOM] ( Inline.ATOM.psx.ps1 ) | ATOM Inline PipeScript Transpiler. | ``` \.atom$ ``` |
9- | [ Bash] ( Inline.Bash.psx.ps1 ) | Bash PipeScript Transpiler. | ``` \.sh$ ``` |
10- | [ Basic] ( Inline.Basic.psx.ps1 ) | Basic PipeScript Transpiler. | ```\. (?>bas\\ | vbs{0,1})$``` |
11- | [ Batch] ( Inline.Batch.psx.ps1 ) | Batch PipeScript Transpiler. | ``` \.cmd$ ``` |
12- | [ Bicep] ( Inline.Bicep.psx.ps1 ) | Bicep Inline PipeScript Transpiler. | ``` \.bicep$ ``` |
13- | [ CPlusPlus] ( Inline.CPlusPlus.psx.ps1 ) | C/C++ PipeScript Transpiler. | ```\. (?>c\\ | cpp\\ | h\\ | swig)$``` |
14- | [ CSharp] ( Inline.CSharp.psx.ps1 ) | C# Inline PipeScript Transpiler. | ``` \.cs$ ``` |
15- | [ CSS] ( Inline.CSS.psx.ps1 ) | CSS Inline PipeScript Transpiler. | ``` \.s{0,1}css$ ``` |
16- | [ Go] ( Inline.Go.psx.ps1 ) | Go PipeScript Transpiler. | ``` \.go$ ``` |
17- | [ HLSL] ( Inline.HLSL.psx.ps1 ) | HLSL Inline PipeScript Transpiler. | ``` \.hlsl$ ``` |
18- | [ HTML] ( Inline.HTML.psx.ps1 ) | HTML PipeScript Transpiler. | ``` \.htm{0,1} ``` |
19- | [ Java] ( Inline.Java.psx.ps1 ) | Java Inline PipeScript Transpiler. | ``` \.(?>java)$ ``` |
20- | [ JavaScript] ( Inline.JavaScript.psx.ps1 ) | JavaScript Inline PipeScript Transpiler.| ``` \.js$ ``` |
21- | [ Json] ( Inline.Json.psx.ps1 ) | JSON PipeScript Transpiler. | ``` \.json$ ``` |
22- | [ Kotlin] ( Inline.Kotlin.psx.ps1 ) | Kotlin Inline PipeScript Transpiler. | ``` \.kt$ ``` |
23- | [ Markdown] ( Inline.Markdown.psx.ps1 ) | Markdown File Transpiler. | ```\. (?>md\\ | markdown)$``` |
24- | [ ObjectiveC] ( Inline.ObjectiveC.psx.ps1 ) | Objective C PipeScript Transpiler. | ```\. (?>m\\ | mm)$``` |
25- | [ OpenSCAD] ( Inline.OpenSCAD.psx.ps1 ) | OpenSCAD Inline PipeScript Transpiler. | ``` \.scad$ ``` |
26- | [ Perl] ( Inline.Perl.psx.ps1 ) | Perl Inline PipeScript Transpiler. | ```\. (?>pl\\ | pod)$``` |
27- | [ PHP] ( Inline.PHP.psx.ps1 ) | PHP PipeScript Transpiler. | ``` \.php$ ``` |
28- | [ PSD1] ( Inline.PSD1.psx.ps1 ) | PSD1 Inline PipeScript Transpiler. | ``` \.psd1$ ``` |
29- | [ Python] ( Inline.Python.psx.ps1 ) | Python Inline PipeScript Transpiler. | ``` \.py$ ``` |
30- | [ R] ( Inline.R.psx.ps1 ) | R PipeScript Transpiler. | ``` \.r$ ``` |
31- | [ Razor] ( Inline.Razor.psx.ps1 ) | Razor Inline PipeScript Transpiler. | ```\. (cshtml\\ | razor)$``` |
32- | [ RSS] ( Inline.RSS.psx.ps1 ) | RSS Inline PipeScript Transpiler. | ``` \.rss$ ``` |
33- | [ Ruby] ( Inline.Ruby.psx.ps1 ) | Ruby Inline PipeScript Transpiler. | ``` \.rb$ ``` |
34- | [ Rust] ( Inline.Rust.psx.ps1 ) | Rust Inline PipeScript Transpiler. | ``` \.rs$ ``` |
35- | [ SQL] ( Inline.SQL.psx.ps1 ) | SQL PipeScript Transpiler. | ``` \.sql$ ``` |
36- | [ TCL] ( Inline.TCL.psx.ps1 ) | TCL/TK PipeScript Transpiler. | ```\. t(?>cl\\ | k)$``` |
37- | [ TOML] ( Inline.TOML.psx.ps1 ) | TOML Inline PipeScript Transpiler. | ``` \.toml$ ``` |
38- | [ TypeScript] ( Inline.TypeScript.psx.ps1 ) | TypeScript Inline PipeScript Transpiler.| ``` \.tsx{0,1} ``` |
39- | [ XML] ( Inline.XML.psx.ps1 ) | XML Inline PipeScript Transpiler. | ```\. (?>xml\\ | xaml\\ | ps1xml)$```|
40- | [ YAML] ( Inline.YAML.psx.ps1 ) | Yaml File Transpiler. | ```\. (?>yml\\ | yaml)$``` |
5+ | Language | Synopsis | Pattern |
6+ | ---------------------------------------------------------- | ----------------------------------------| --------------------------------|
7+ | [ ADA] ( Transpilers/Inline/ Inline.ADA.psx.ps1) | ADA PipeScript Transpiler. | ``` \.ad[bs]$ ``` |
8+ | [ ATOM] ( Transpilers/Inline/ Inline.ATOM.psx.ps1) | ATOM Inline PipeScript Transpiler. | ``` \.atom$ ``` |
9+ | [ Bash] ( Transpilers/Inline/ Inline.Bash.psx.ps1) | Bash PipeScript Transpiler. | ``` \.sh$ ``` |
10+ | [ Basic] ( Transpilers/Inline/ Inline.Basic.psx.ps1) | Basic PipeScript Transpiler. | ```\. (?>bas\\ | vbs{0,1})$``` |
11+ | [ Batch] ( Transpilers/Inline/ Inline.Batch.psx.ps1) | Batch PipeScript Transpiler. | ``` \.cmd$ ``` |
12+ | [ Bicep] ( Transpilers/Inline/ Inline.Bicep.psx.ps1) | Bicep Inline PipeScript Transpiler. | ``` \.bicep$ ``` |
13+ | [ CPlusPlus] ( Transpilers/Inline/ Inline.CPlusPlus.psx.ps1) | C/C++ PipeScript Transpiler. | ```\. (?>c\\ | cpp\\ | h\\ | swig)$``` |
14+ | [ CSharp] ( Transpilers/Inline/ Inline.CSharp.psx.ps1) | C# Inline PipeScript Transpiler. | ``` \.cs$ ``` |
15+ | [ CSS] ( Transpilers/Inline/ Inline.CSS.psx.ps1) | CSS Inline PipeScript Transpiler. | ``` \.s{0,1}css$ ``` |
16+ | [ Go] ( Transpilers/Inline/ Inline.Go.psx.ps1) | Go PipeScript Transpiler. | ``` \.go$ ``` |
17+ | [ HLSL] ( Transpilers/Inline/ Inline.HLSL.psx.ps1) | HLSL Inline PipeScript Transpiler. | ``` \.hlsl$ ``` |
18+ | [ HTML] ( Transpilers/Inline/ Inline.HTML.psx.ps1) | HTML PipeScript Transpiler. | ``` \.htm{0,1} ``` |
19+ | [ Java] ( Transpilers/Inline/ Inline.Java.psx.ps1) | Java Inline PipeScript Transpiler. | ``` \.(?>java)$ ``` |
20+ | [ JavaScript] ( Transpilers/Inline/ Inline.JavaScript.psx.ps1) | JavaScript Inline PipeScript Transpiler.| ``` \.js$ ``` |
21+ | [ Json] ( Transpilers/Inline/ Inline.Json.psx.ps1) | JSON PipeScript Transpiler. | ``` \.json$ ``` |
22+ | [ Kotlin] ( Transpilers/Inline/ Inline.Kotlin.psx.ps1) | Kotlin Inline PipeScript Transpiler. | ``` \.kt$ ``` |
23+ | [ Markdown] ( Transpilers/Inline/ Inline.Markdown.psx.ps1) | Markdown File Transpiler. | ```\. (?>md\\ | markdown)$``` |
24+ | [ ObjectiveC] ( Transpilers/Inline/ Inline.ObjectiveC.psx.ps1) | Objective C PipeScript Transpiler. | ```\. (?>m\\ | mm)$``` |
25+ | [ OpenSCAD] ( Transpilers/Inline/ Inline.OpenSCAD.psx.ps1) | OpenSCAD Inline PipeScript Transpiler. | ``` \.scad$ ``` |
26+ | [ Perl] ( Transpilers/Inline/ Inline.Perl.psx.ps1) | Perl Inline PipeScript Transpiler. | ```\. (?>pl\\ | pod)$``` |
27+ | [ PHP] ( Transpilers/Inline/ Inline.PHP.psx.ps1) | PHP PipeScript Transpiler. | ``` \.php$ ``` |
28+ | [ PSD1] ( Transpilers/Inline/ Inline.PSD1.psx.ps1) | PSD1 Inline PipeScript Transpiler. | ``` \.psd1$ ``` |
29+ | [ Python] ( Transpilers/Inline/ Inline.Python.psx.ps1) | Python Inline PipeScript Transpiler. | ``` \.py$ ``` |
30+ | [ R] ( Transpilers/Inline/ Inline.R.psx.ps1) | R PipeScript Transpiler. | ``` \.r$ ``` |
31+ | [ Razor] ( Transpilers/Inline/ Inline.Razor.psx.ps1) | Razor Inline PipeScript Transpiler. | ```\. (cshtml\\ | razor)$``` |
32+ | [ RSS] ( Transpilers/Inline/ Inline.RSS.psx.ps1) | RSS Inline PipeScript Transpiler. | ``` \.rss$ ``` |
33+ | [ Ruby] ( Transpilers/Inline/ Inline.Ruby.psx.ps1) | Ruby Inline PipeScript Transpiler. | ``` \.rb$ ``` |
34+ | [ Rust] ( Transpilers/Inline/ Inline.Rust.psx.ps1) | Rust Inline PipeScript Transpiler. | ``` \.rs$ ``` |
35+ | [ SQL] ( Transpilers/Inline/ Inline.SQL.psx.ps1) | SQL PipeScript Transpiler. | ``` \.sql$ ``` |
36+ | [ TCL] ( Transpilers/Inline/ Inline.TCL.psx.ps1) | TCL/TK PipeScript Transpiler. | ```\. t(?>cl\\ | k)$``` |
37+ | [ TOML] ( Transpilers/Inline/ Inline.TOML.psx.ps1) | TOML Inline PipeScript Transpiler. | ``` \.toml$ ``` |
38+ | [ TypeScript] ( Transpilers/Inline/ Inline.TypeScript.psx.ps1) | TypeScript Inline PipeScript Transpiler.| ``` \.tsx{0,1} ``` |
39+ | [ XML] ( Transpilers/Inline/ Inline.XML.psx.ps1) | XML Inline PipeScript Transpiler. | ```\. (?>xml\\ | xaml\\ | ps1xml)$```|
40+ | [ YAML] ( Transpilers/Inline/ Inline.YAML.psx.ps1) | Yaml File Transpiler. | ```\. (?>yml\\ | yaml)$``` |
4141
4242
4343
0 commit comments