commit 9e6e46b1b977d72aa162c29e926b22c2c5036b16
parent 182662692b4c4de4cba46759cf9b6d09086d9821
Author: Erik Loualiche <[email protected]>
Date: Tue, 20 May 2025 14:23:34 -0500
standard doc
Diffstat:
3 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml
@@ -6,7 +6,7 @@ on:
workflow_dispatch:
inputs:
lookback:
- default: "3"
+ default: 3
permissions:
actions: read
checks: read
diff --git a/Project.toml b/Project.toml
@@ -1,7 +1,7 @@
name = "BazerUtils"
uuid = "36dcebb2-80bb-4116-91f4-ed9f396c4a1c"
authors = ["Erik Loualiche"]
-version = "0.7.0"
+version = "0.7.1"
[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
diff --git a/docs/make.jl b/docs/make.jl
@@ -14,10 +14,14 @@ using DocumenterVitepress
# --
makedocs(
- # format = Documenter.HTML(),
- format = DocumenterVitepress.MarkdownVitepress(
- repo = "https://github.com/eloualiche/BazerUtils.jl",
+ format = Documenter.HTML(
+ size_threshold = 512_000, # KiB — raise above your largest file
+ size_threshold_warn = 256_000, # optional
+ example_size_threshold = 200_000, # bytes — for large @example blocks
),
+ # format = DocumenterVitepress.MarkdownVitepress(
+ # repo = "https://github.com/eloualiche/BazerUtils.jl",
+ # ),
repo = Remotes.GitHub("eloualiche", "BazerUtils.jl"),
sitename = "BazerUtils.jl",
modules = [BazerUtils],