Skip to content

Commit 6258d56

Browse files
Merge pull request #216 from StartAutomating/edits-Tue,16Apr202402-49-39GMT
Posting with GitPub [skip ci]
2 parents e5faf87 + ae93e3b commit 6258d56

File tree

4 files changed

+76
-0
lines changed

4 files changed

+76
-0
lines changed

docs/2024-04-16.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2024/04/16/
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 != "2024 04 16" %}
8+
{% continue %}
9+
{% endif %}
10+
{% if currentdate != date %}
11+
## {{friendlydate}}
12+
{% assign date = currentdate %}
13+
{% endif %}
14+
* [ {{ post.title }} ]( {{ post.url }} )
15+
{% endfor %}

docs/2024-04.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2024/04/
3+
---
4+
{% assign currentYearMonth = "2024 04" %}
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 %}

docs/2024.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
permalink: /2024/
3+
---
4+
{% assign currentYear = "2024" %}
5+
{% for post in site.posts %}
6+
{% assign postYear = post.date | date: "%Y" %}
7+
{% assign postYearMonth = post.date | date: "[%B](%m) %Y" %}
8+
{% if postYear != currentYear %}
9+
{% continue %}
10+
{% endif %}
11+
{% if hasDisplayedYear != postYear %}
12+
## [{{postYear}}](.)
13+
{% endif %}
14+
{% assign hasDisplayedYear = postYear %}
15+
{% if hasDisplayedYearMonth != postYearMonth %}
16+
### {{postYearMonth}}
17+
{% endif %}
18+
{% assign hasDisplayedYearMonth = postYearMonth %}
19+
* [ {{ post.title }} ]( {{ post.url }} )
20+
{% endfor %}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
3+
title: Irregular 0.7.9
4+
sourceURL: https://github.com/StartAutomating/Irregular/releases/tag/v0.7.9
5+
tag: release
6+
---
7+
## 0.7.9:
8+
9+
* Irregular Docker Support ([#205](https://github.com/StartAutomating/Irregular/issues/205),[#206](https://github.com/StartAutomating/Irregular/issues/206),[#207](https://github.com/StartAutomating/Irregular/issues/207))
10+
* `docker run --interactive --tty ghcr.io/startautomating/irregular`
11+
* Irregular Repository Cleanup ([#208](https://github.com/StartAutomating/Irregular/issues/208), [#209](https://github.com/StartAutomating/Irregular/issues/209), [#210](https://github.com/StartAutomating/Irregular/issues/210), [#211](https://github.com/StartAutomating/Irregular/issues/211))
12+
* Exporting $Irregular ([#212](https://github.com/StartAutomating/Irregular/issues/212))
13+
* Mounting Irregular: ([#213](https://github.com/StartAutomating/Irregular/issues/213))
14+
* Simple Symbol Patterns
15+
* ?<Symbol> ([#202](https://github.com/StartAutomating/Irregular/issues/202))
16+
* ?<Symbol_Currency> ([#214](https://github.com/StartAutomating/Irregular/issues/214))
17+
* ?<Symbol_Math> ([#203](https://github.com/StartAutomating/Irregular/issues/203))
18+
19+
---
20+
21+
Full history in [CHANGELOG](https://github.com/StartAutomating/Irregular/blob/master/CHANGELOG.md)
22+
23+
> Like It? [Star It](https://github.com/StartAutomating/Irregular)
24+
> Love It? [Support It](https://github.com/sponsors/StartAutomating)

0 commit comments

Comments
 (0)