Skip to content

Commit 7fba862

Browse files
Merge pull request #78 from StartAutomating/MorePipeScripting
More pipe scripting
2 parents 37aa6a1 + e8db083 commit 7fba862

23 files changed

+978
-137
lines changed

.github/workflows/TestAndPublish.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -485,22 +485,22 @@ jobs:
485485
}
486486
}
487487
} @Parameters
488-
BuildPipeScript:
488+
UsePiecemeal:
489489
runs-on: ubuntu-latest
490490
if: ${{ success() }}
491491
steps:
492492
- name: Check out repository
493493
uses: actions/checkout@v2
494-
- name: BuildPipeScript
495-
uses: StartAutomating/PipeScript@main
496-
HelpOut:
494+
- name: UsePiecemeal
495+
uses: StartAutomating/Piecemeal@main
496+
BuildPipeScript:
497497
runs-on: ubuntu-latest
498498
if: ${{ success() }}
499499
steps:
500500
- name: Check out repository
501501
uses: actions/checkout@v2
502-
- name: UseHelpOut
503-
uses: StartAutomating/HelpOut@master
502+
- name: BuildPipeScript
503+
uses: StartAutomating/PipeScript@main
504504
RunEZOut:
505505
runs-on: ubuntu-latest
506506
if: ${{ success() }}
@@ -512,5 +512,13 @@ jobs:
512512
- name: Push Changes
513513
shell: pwsh
514514
run: git push; exit 0
515+
HelpOut:
516+
runs-on: ubuntu-latest
517+
if: ${{ success() }}
518+
steps:
519+
- name: Check out repository
520+
uses: actions/checkout@v2
521+
- name: UseHelpOut
522+
uses: StartAutomating/HelpOut@master
515523
env:
516524
NoCoverage: true

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.0.4
2+
* New Transpilers:
3+
* .>RegexLiteral (#77)
4+
* Improved Transpilers:
5+
* .>PipeScript.Inline now supports -ReplacePattern (#84)
6+
* .>Include now supports wildcards (#81)
7+
* Inline PipeScript Support for New Languages
8+
* ATOM (#79)
9+
* Bicep (#73)
10+
* HLSL (#76)
11+
* Perl / POD (#74)
12+
* RSS (#80)
13+
---
14+
115
## 0.0.3
216
* New Transpilers:
317
* .>ValidateExtension (#64)

Formatting/Markdown.format.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ Write-FormatView -TypeName Markdown -Action {
77
$thisObject.Table | Format-Markdown
88
}
99
elseif ($thisObject.InputObject) {
10-
$thisObject.InputObject | Format-Markdown
10+
$thisObject | Format-Markdown -InputObject { $thisObject.InputObject }
11+
}
12+
elseif ($thisObject.Heading -and ($thisObject.Code -or $this.CodeLanguage)) {
13+
$thisObject | Format-Markdown
1114
}
1215
elseif ($thisObject.psobject.Properties.Length) {
1316
$thisObject | Format-Markdown
1417
} else {
15-
''
18+
"$thisObject"
1619
}
1720
}

0 commit comments

Comments
 (0)