Skip to content

Commit 1713438

Browse files
Merge pull request #118 from StartAutomating/edits-Fri,17Mar202303-13-34GMT
Posting with GitPub [skip ci]
2 parents cc63542 + 78570b5 commit 1713438

3 files changed

Lines changed: 226 additions & 0 deletions

File tree

docs/2023-03-09.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2023/03/09/
3+
---
4+
{% for post in site.posts %}
5+
{% assign currentdate = post.date | date: "%Y %m %d" %}
6+
{% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %}
7+
{% if currentdate != "2023 03 09" %}
8+
{% continue %}
9+
{% endif %}
10+
{% if currentdate != date %}
11+
## {{friendlydate}}
12+
{% assign date = currentdate %}
13+
{% endif %}
14+
* [ {{ post.title }} ]( {{ post.url }} )
15+
{% endfor %}

docs/2023-03.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2023/03/
3+
---
4+
{% assign currentYearMonth = "2023 03" %}
5+
{% for post in site.posts %}
6+
{% assign postYear = post.date | date: "%Y" %}
7+
{% assign postYearMonth = post.date | date: "%B [%Y](..)" %}
8+
{% assign postYM = post.date | date: "%Y %m" %}
9+
{% if postYM != currentYearMonth %}
10+
{% continue %}
11+
{% endif %}
12+
{% if hasDisplayedYearMonth != postYearMonth %}
13+
## {{postYearMonth}}
14+
{% endif %}
15+
{% assign hasDisplayedYearMonth = postYearMonth %}
16+
* [ {{ post.title }} ]( {{ post.url }} )
17+
{% endfor %}
Lines changed: 194 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
---
2+
3+
title: HelpOut 0.4.3
4+
sourceURL: https://github.com/StartAutomating/HelpOut/releases/tag/v0.4.3
5+
tag: release
6+
---
7+
### 0.4.3
8+
9+
* Action Improvements:
10+
* Not obeying -InstallModule if a local module is found (Fixes [#113](https://github.com/StartAutomating/HelpOut/issues/113))
11+
* Not adding files found outside of the workspace (Fixes [#114](https://github.com/StartAutomating/HelpOut/issues/114))
12+
* Checking for detached branch before pulling (Fixes [#103](https://github.com/StartAutomating/HelpOut/issues/103))
13+
14+
---
15+
16+
### 0.4.2
17+
18+
* Markdown Help Improvements:
19+
* Adding Aliases (Fixes [#111](https://github.com/StartAutomating/HelpOut/issues/111))
20+
* Removing Horizontal Rule between parameters (Fixes [#110](https://github.com/StartAutomating/HelpOut/issues/110))
21+
* Adding newline before and after each section
22+
* Supporting Script Stories (Fixes [#104](https://github.com/StartAutomating/HelpOut/issues/104))
23+
* [Ordered] Synopsis and Description (Fixes [#107](https://github.com/StartAutomating/HelpOut/issues/107))
24+
* Sorting front matter by Position (descending) and Name (Fixes [#107](https://github.com/StartAutomating/HelpOut/issues/107))
25+
* Moving Syntax below Notes and Story (re [#104](https://github.com/StartAutomating/HelpOut/issues/104))
26+
* Get-ScriptStory:
27+
* Defaulting -HeadingSize to 3
28+
* Action Improvements:
29+
* Better Terminal Output / Removing Output Variables (Fixes [#109](https://github.com/StartAutomating/HelpOut/issues/109))
30+
* Improving branchless error behavior (Fixes [#103](https://github.com/StartAutomating/HelpOut/issues/103))
31+
* Adding -InstallModule (Fixes [#108](https://github.com/StartAutomating/HelpOut/issues/108))
32+
33+
---
34+
35+
### 0.4.1
36+
37+
* Parameter Properties are now rendered as a table (Fixes [#98](https://github.com/StartAutomating/HelpOut/issues/98))
38+
* Save-MarkdownHelp: Adding -ExcludeFile (Fixes [#97](https://github.com/StartAutomating/HelpOut/issues/97))
39+
40+
---
41+
42+
### 0.4
43+
44+
* Get/Save-MarkdownHelp:
45+
* Adding -YamlHeaderInformationType and including [Reflection.AssemblyMetaData] attributes (Fixes [#93](https://github.com/StartAutomating/HelpOut/issues/93))
46+
* Replacing anchor links with lowercase (Fixes [#92](https://github.com/StartAutomating/HelpOut/issues/92))
47+
* Returning unmodified files when no link is replaced (Fixes [#91](https://github.com/StartAutomating/HelpOut/issues/91))
48+
49+
---
50+
51+
### 0.3.9
52+
53+
* No longer attempting to repair links if the file is not markdown (Fixes [#88](https://github.com/StartAutomating/HelpOut/issues/88))
54+
55+
---
56+
57+
### 0.3.8
58+
59+
* YAML Header is now optional (with -IncludeYamlHeader) (Fixes [#80](https://github.com/StartAutomating/HelpOut/issues/80))
60+
* Save-MarkdownHelp trims content (Fixes [#85](https://github.com/StartAutomating/HelpOut/issues/85))
61+
62+
---
63+
64+
### 0.3.7
65+
66+
All Markdown help now includes a YAML Header unless -NoYAMLHeader is passed (Fixes [#80](https://github.com/StartAutomating/HelpOut/issues/80))
67+
68+
---
69+
70+
### 0.3.6
71+
* Improvements to [OutputType] support (Fixes [#78](https://github.com/StartAutomating/HelpOut/issues/78))
72+
* GitHub Action No Longer Runs when not on a branch (Fixes [#77](https://github.com/StartAutomating/HelpOut/issues/77))
73+
74+
---
75+
76+
### 0.3.5
77+
* Markdown Help Improvements: Escaping Example Code (Fixes [#75](https://github.com/StartAutomating/HelpOut/issues/75))
78+
79+
---
80+
81+
### 0.3.4
82+
* Fixing accidental heading names in .Link and parameter properties (Fixes [#73](https://github.com/StartAutomating/HelpOut/issues/73))
83+
84+
---
85+
86+
### 0.3.3
87+
* Markdown Help now uses fewer tables (improves default GitHub Page rendering) (fixes [#71](https://github.com/StartAutomating/HelpOut/issues/71))
88+
89+
---
90+
91+
### 0.3.2
92+
* Save-MarkdownHelp Bugfix (Fixes [#69](https://github.com/StartAutomating/HelpOut/issues/69))
93+
94+
---
95+
96+
### 0.3.1
97+
* Save-MarkdownHelp:
98+
* Can now -ReplaceLink (Fixes [#66](https://github.com/StartAutomating/HelpOut/issues/66))
99+
* -ReplaceLink will always replace -OutputPath (Fixes [#67](https://github.com/StartAutomating/HelpOut/issues/67))
100+
* Changing Aliases for -SkipCommandType (Fixes [#65](https://github.com/StartAutomating/HelpOut/issues/65))
101+
102+
---
103+
104+
### 0.3:
105+
* Get-MarkdownHelp: Fixing Property Table rendering issues with ValidValues ([#58](https://github.com/StartAutomating/HelpOut/issues/58))
106+
* Workflow improvements: Building formatting / types in CI/CD ([#63](https://github.com/StartAutomating/HelpOut/issues/63))
107+
---
108+
### 0.2.9:
109+
* Get-MarkdownHelp: Fixing Property Table rendering issues with ValidValues ([#58](https://github.com/StartAutomating/HelpOut/issues/58))
110+
* Action improvements:
111+
* Pulling just before push ([#59](https://github.com/StartAutomating/HelpOut/issues/59))
112+
* Improving username / email detection ([#60](https://github.com/StartAutomating/HelpOut/issues/60))
113+
114+
---
115+
116+
### 0.2.8:
117+
* Save-MarkdownHelp:
118+
* Adding -ExcludeTopic ([#55](https://github.com/StartAutomating/HelpOut/issues/55))
119+
* -IncludeTopic excludes deeply nested topics ([#54](https://github.com/StartAutomating/HelpOut/issues/54))
120+
* -IncludeExtension default now includes .svg files ([#53](https://github.com/StartAutomating/HelpOut/issues/53))
121+
122+
---
123+
124+
### 0.2.7
125+
* Save-MarkdownHelp:
126+
* Adding -Command, -ReplaceCommandName, -ReplaceCommandNameWith ([#45](https://github.com/StartAutomating/HelpOut/issues/45))
127+
* Fixing -ReplaceScriptName issue ([#46](https://github.com/StartAutomating/HelpOut/issues/46))
128+
* Save-MAML:
129+
* -PassThru now returns files, not file contents ([#47](https://github.com/StartAutomating/HelpOut/issues/47))
130+
* HelpOut.HelpOut.ps1 Added (Selfhosting Action ([#48](https://github.com/StartAutomating/HelpOut/issues/48)))
131+
132+
---
133+
134+
### 0.2.6
135+
* Save-MarkdownHelp:
136+
* Improving Inline Documentation
137+
* Allowing -ScriptPath to be a Regex ([#41](https://github.com/StartAutomating/HelpOut/issues/41))
138+
* Fixing Relative Paths with -IncludeExtension ([#42](https://github.com/StartAutomating/HelpOut/issues/42))
139+
* Improving -IncludeTopic regex behavior ([#43](https://github.com/StartAutomating/HelpOut/issues/43))
140+
141+
---
142+
143+
### 0.2.5
144+
* Save-MarkdownHelp:
145+
* Adding -IncludeExtension ([#35](https://github.com/StartAutomating/HelpOut/issues/35))
146+
* Applying -PassThru to -IncludeTopic ([#34](https://github.com/StartAutomating/HelpOut/issues/34))
147+
* Allowing wildcards in -IncludeTopic ([#33](https://github.com/StartAutomating/HelpOut/issues/33))
148+
* Preliminary support for GitHub Pages Publishing ([#32](https://github.com/StartAutomating/HelpOut/issues/32))
149+
150+
---
151+
152+
### 0.2.4
153+
* Save-MarkdownHelp:
154+
* Adding -SkipCommandType ([#29](https://github.com/StartAutomating/HelpOut/issues/29))
155+
* -ScriptPath now allows wildcards ([#28](https://github.com/StartAutomating/HelpOut/issues/28))
156+
* Formatting now Handles Arrays of Enums ([#30](https://github.com/StartAutomating/HelpOut/issues/30))
157+
158+
---
159+
160+
### 0.2.3
161+
* Get/Save-MarkdownHelp: Support for -NoValidValueEnumeration (re [#25](https://github.com/StartAutomating/HelpOut/issues/25))
162+
* Save-MarkdownHelp: Adding -IncludeTopic (Fixes [#24](https://github.com/StartAutomating/HelpOut/issues/24), [#26](https://github.com/StartAutomating/HelpOut/issues/26))
163+
* Adding ValidateSet/Enum Formatting for Markdown Help (Fixing [#25](https://github.com/StartAutomating/HelpOut/issues/25))
164+
165+
166+
---
167+
168+
### 0.2.2
169+
* Fixing issue generating docs ([#22](https://github.com/StartAutomating/HelpOut/issues/22))
170+
* HelpOut Action Fix ([#20](https://github.com/StartAutomating/HelpOut/issues/20))
171+
172+
---
173+
174+
### 0.2.1
175+
* Get/Save-MarkdownHelp: Support for -SectionOrder ([#19](https://github.com/StartAutomating/HelpOut/issues/19))
176+
* Save-MarkdownHelp: Adding -Passthru ([#17](https://github.com/StartAutomating/HelpOut/issues/17)). Converting Markdown Help into a string ([#18](https://github.com/StartAutomating/HelpOut/issues/18))
177+
* Get-MarkdownHelp: Returning Object ([#18](https://github.com/StartAutomating/HelpOut/issues/18))
178+
* Fixing URL-only related links ([#14](https://github.com/StartAutomating/HelpOut/issues/14))
179+
* Adding Get-MarkdownHelp -Rename ([#13](https://github.com/StartAutomating/HelpOut/issues/13))
180+
* Retitling Script Files with relative path ([#12](https://github.com/StartAutomating/HelpOut/issues/12))
181+
182+
---
183+
184+
### 0.2
185+
* Adding Install-MAML ([#1](https://github.com/StartAutomating/HelpOut/issues/1)/ [#7](https://github.com/StartAutomating/HelpOut/issues/7))
186+
* Adding Get-MarkdownHelp ([#4](https://github.com/StartAutomating/HelpOut/issues/4))
187+
* Adding Save-MarkdownHelp ([#10](https://github.com/StartAutomating/HelpOut/issues/10))
188+
* Adding HelpOut Action ([#5](https://github.com/StartAutomating/HelpOut/issues/5))
189+
* Adding Measure-Help ([#11](https://github.com/StartAutomating/HelpOut/issues/11))
190+
* Adding Get-ScriptStory ([#3](https://github.com/StartAutomating/HelpOut/issues/3))
191+
* Adding Get-ScriptReference ([#2](https://github.com/StartAutomating/HelpOut/issues/2))
192+
* Renmaing ConvertTo-MAML->Get-MAML
193+
194+
---

0 commit comments

Comments
 (0)