Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync main to branch #2

Merged
merged 25 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3ade47f
docs: update Poesieland URL
McShelby Sep 2, 2024
0be4927
theme: support Obsidian styled alerts #903
McShelby Sep 3, 2024
9cca879
Ship tag 6.3.0
Sep 3, 2024
b280843
Mark non-release version
Sep 3, 2024
df8fdc2
docs: wording #903
McShelby Sep 3, 2024
f10d9dd
docs: update markdown example #903
McShelby Sep 3, 2024
649600b
docs: consistency is king #903
McShelby Sep 3, 2024
0edaa81
notice: collapse borders if single code block is displayed #906
McShelby Sep 4, 2024
50165dd
docs: mention Octocats in credits
McShelby Sep 4, 2024
33f9cb6
shortcodes: fix whitespace issues #907
McShelby Sep 5, 2024
86fa3c7
resources: add expanded parameter #908
McShelby Sep 5, 2024
1858bf4
notice: fix styling for Markdown code boxes #906
McShelby Sep 6, 2024
a55a3f0
docs: variance #906
McShelby Sep 6, 2024
57f2618
docs: don't look like a C novice #906
McShelby Sep 6, 2024
f696f60
frontmatter: add expanded parameter for shortcodes #911
McShelby Sep 8, 2024
5d7bdfc
notice: fix code in markdown alerts, take II #906
McShelby Sep 11, 2024
70e51b0
notice: support user defined box styles #913
McShelby Sep 12, 2024
d0b1735
docs: supplement #913
McShelby Sep 12, 2024
7d927f1
include: don't erroneously remove headings if hidefirstheading=true #914
McShelby Sep 12, 2024
a185305
build: add link for migration into changelog #915
McShelby Sep 12, 2024
59af8fd
build: don't link to patch release #915
McShelby Sep 12, 2024
1fe1efe
build: be a nice Hugo citizen in regards to screenshots
McShelby Sep 12, 2024
3cda560
docs: mention Pixeden for screenshot templates in credits
McShelby Sep 12, 2024
aedb438
Ship tag 6.4.0
Sep 12, 2024
d5a0ee0
Mark non-release version
Sep 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .grenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ module.exports = {
onlyMilestones: true,
template: {
group: "\n### {{heading}}\n",
release: ({ body, date, release }) => `## ${release} (` + date.replace( /(\d+)\/(\d+)\/(\d+)/, '$3-$2-$1' ) + `)\n${body}`,
release: ({ body, date, release }) => `## ${release} (` + date.replace( /(\d+)\/(\d+)\/(\d+)/, '$3-$2-$1' ) + `)\n\n[What's new in this release](https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#` + release.replace( /(\d+)\.(\d+)\.(\d+)/, '$1$2' ) + `0)\n${body}`,
},
};
Loading