Skip to content

Commit bce38f0

Browse files
docs: upgrade theme to v8 (#565)
1 parent 0a99c85 commit bce38f0

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Setup Hugo
4141
uses: peaceiris/actions-hugo@v3
4242
with:
43-
hugo-version: '0.145.0'
43+
hugo-version: '0.150.1'
4444
extended: true
4545

4646
- name: Build

.github/workflows/release-doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup Hugo
3434
uses: peaceiris/actions-hugo@v3
3535
with:
36-
hugo-version: '0.145.0'
36+
hugo-version: '0.150.1'
3737
extended: true
3838

3939
- name: Build for GitHub Pages

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ $(GOBIN)/golangci-lint: verify $(GOBIN)/eget
102102

103103
$(GOBIN)/hugo: $(GOBIN)/eget
104104
@echo "[*] $@"
105-
"$(GOBIN)/eget" gohugoio/hugo --tag v0.145.0 --upgrade-only --asset=extended_0 --to '$(GOBIN)'
105+
"$(GOBIN)/eget" gohugoio/hugo --tag v0.150.1 --upgrade-only --asset=extended_0 --to '$(GOBIN)'
106106

107107
$(GOBIN)/muffet: verify $(GOBIN)/eget
108108
@echo "[*] $@"

docs/content/schedules/commands.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@ Remove all schedules from the selected profile or all profiles using the `--all`
4747

4848
Before `v0.30.0`, the `--all` flag did not remove schedules for deleted or renamed profiles.
4949

50-
> [!NOTE]
51-
> Starting with `v0.30.0`, the behavior of the `unschedule` command changed:
52-
> - Without the `--all` flag, it deletes schedules associated with the profile name.
53-
> - With the `--all` flag, it removes all profiles from the configuration file, including deleted and renamed ones.
50+
{{% notice note %}}
51+
Starting with `v0.30.0`, the behavior of the `unschedule` command changed:
52+
- Without the `--all` flag, it deletes schedules associated with the profile name.
53+
- With the `--all` flag, it removes all profiles from the configuration file, including deleted and renamed ones.
54+
{{% /notice %}}
5455

5556
### status command
5657

docs/hugo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,6 @@ publishdir = "../public/"
8181

8282
[link]
8383
errorlevel = 'warning'
84+
85+
# [markup.goldmark.renderer]
86+
# unsafe = true

docs/themes/hugo-theme-relearn

Submodule hugo-theme-relearn updated 131 files

term/term.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func OsStdoutIsTerminal() bool {
8686
return term.IsTerminal(fd)
8787
}
8888

89-
// OsStdoutTerminalSize returns true as os.Stdout is a terminal session
89+
// OsStdoutTerminalSize returns the current width and height of os.Stdout
9090
func OsStdoutTerminalSize() (width, height int) {
9191
fd := fdToInt(os.Stdout.Fd())
9292
var err error

0 commit comments

Comments
 (0)