File tree Expand file tree Collapse file tree 3 files changed +21
-10
lines changed
Expand file tree Collapse file tree 3 files changed +21
-10
lines changed Original file line number Diff line number Diff line change 1+ ## 0.2:
2+
3+ * Massive Improvements in Templating
4+ * Templates can be used interactively (Fixes #285 )
5+ * Renaming all Inline Transpilers to Template Transpilers
6+ * Natural Parsing Improvements
7+ * ArrayLiterals are expanded (Fixes #291 )
8+ * AsSentence now only allows one value into a singleton (Fixes #279 )
9+ * Not expanding expandable strings (Fixes #286 )
10+ * Transpilers can change nearby context (Fixes #292 )
11+ * Allowing dot syntax to extend across multiple statements (Fixes #273 )
12+ * Adding requires keyword (Fixes #293 )
13+ * PipeScript modifies its own manifest (Fixes #294 )
14+
15+ ---
16+
117## 0.1.9:
218* Protocol Transpilers
319 * Adding JSONSchema transpiler (Fixes #274 )
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ These are all of the transpilers currently included in PipeScript:
5757| [ PipeScript.ParameterTypeConstraint] ( Transpilers/Core/PipeScript.ParameterTypeConstraint.psx.ps1 ) | Transpiles Parameter Type Constraints |
5858| [ PipeScript.Protocol] ( Transpilers/Core/PipeScript.Protocol.psx.ps1 ) | Core Protocol Transpiler |
5959| [ Pipescript] ( Transpilers/Core/Pipescript.psx.ps1 ) | The Core PipeScript Transpiler |
60- | [ PipeScript.Template] ( Transpilers/Core/PipeScript.Template.psx.ps1 ) | Inline Transpiler |
60+ | [ PipeScript.Template] ( Transpilers/Core/PipeScript.Template.psx.ps1 ) | Template Transpiler |
6161| [ PipeScript.TypeExpression] ( Transpilers/Core/PipeScript.TypeExpression.psx.ps1 ) | The PipeScript TypeExpression Transpiler |
6262| [ ProxyCommand] ( Transpilers/ProxyCommand.psx.ps1 ) | Creates Proxy Commands |
6363| [ PSD1.Template] ( Transpilers/Templates/PSD1.Template.psx.ps1 ) | PSD1 Template Transpiler. |
Original file line number Diff line number Diff line change 11PipeScript.Template
22-------------------
33### Synopsis
4- Inline Transpiler
4+ Template Transpiler
55
66---
77### Description
88
9- The PipeScript Core Inline Transpiler. This makes Source Generators with inline PipeScript work.
9+ The PipeScript Core Template Transpiler.
10+
11+ This allows PipeScript to generate many other languages.
1012
1113Regardless of underlying source language, a source generator works in a fairly straightforward way.
1214
1315Inline PipeScript will be embedded within the file (usually in comments).
1416
1517If a Regular Expression can match each section, then the content in each section can be replaced.
1618
17- ---
18- ### Examples
19- #### EXAMPLE 1
20- ``` PowerShell
21- </div>" -ClassName MyClass -Content MyContent
22- ```
23-
2419---
2520### Parameters
2621#### ** SourceText**
You can’t perform that action at this time.
0 commit comments