Skip to content

Commit de5eccb

Browse files
author
James Brundage
committed
Merge branch 'PipeScriptTemplatesAndOtherTools' of https://github.com/StartAutomating/PipeScript into PipeScriptTemplatesAndOtherTools
2 parents 992d529 + f8564cd commit de5eccb

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

docs/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
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)

docs/ListOfTranspilers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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. |

docs/PipeScript.Template.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
11
PipeScript.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

1113
Regardless of underlying source language, a source generator works in a fairly straightforward way.
1214

1315
Inline PipeScript will be embedded within the file (usually in comments).
1416

1517
If 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**

0 commit comments

Comments
 (0)