asciidoctor-html 2.1.7 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49fac2eb2d48f1d0a8b7f3594ed6e29500722bbd5c2bb7852d05b27527666ab8
4
- data.tar.gz: b2b60fc4a0aa14b1491a00e028385ba8f443f1758ce48f730c7ee43a38729e32
3
+ metadata.gz: 2444911733799e781028aff029ba6a9bbf2eff1b59f1879b04ccada19980960b
4
+ data.tar.gz: c27978469bf6f782dfc949d6d16f962acbe0273c529a7f407b82431fcb19b142
5
5
  SHA512:
6
- metadata.gz: 7461e74c877fb8d27ce89f57a230254971ba8fe9abc7fa89acbd6a8e90ae231aa7a68c2ac7995b3cff460f0d8a0c1fdeef7e340bf68d01d4a1d125839883cdf7
7
- data.tar.gz: 956ff045ee59c8431d4e3a0b0a06530314d729ccea4984ffaa253e26b2af120c4d825db949fa2a60c10fb375299b723c5a6977be57cd530a92a56fac5b0e37c3
6
+ metadata.gz: c81b9b77dddc638a78d8bf7d718c37fe838f3c1aa5d0f4d0b806ab54bb502809d67c902c62764498f2d2ece2de38c13fcfcb7d5fcf6812e50f15399ce26d140c
7
+ data.tar.gz: 49fa266c48fbe723144906e9805495cf99f2ae25f5b7c3cdd0833abe78bac79aadeeb1e1fdecd4d14db98ec26a991aa720a122e7a757261044f013dc05942370
data/.rubocop.yml CHANGED
@@ -3,7 +3,7 @@ AllCops:
3
3
  NewCops: enable
4
4
 
5
5
  Metrics/AbcSize:
6
- Max: 65
6
+ Max: 70
7
7
 
8
8
  Metrics/CyclomaticComplexity:
9
9
  Max: 35
data/CHANGELOG.md CHANGED
@@ -270,3 +270,8 @@
270
270
  - Avoid invalid ordering of h levels by making block titles divs styled as headings.
271
271
  - Add cache busting support.
272
272
  - Include expandable subnavs for each chapter in the navigation sidebar.
273
+
274
+ ## [2.2.0] - 2026-08-26
275
+
276
+ - JupyterLite repl url configurable, but build should be a separate process.
277
+ - Some CSS tweaks.
data/Rakefile CHANGED
@@ -16,11 +16,12 @@ Minitest::TestTask.create
16
16
 
17
17
  RuboCop::RakeTask.new
18
18
 
19
- task docs: %i[test rubocop] do
19
+ desc "Build the docs"
20
+ task :docs do
20
21
  Asciidoctor::Html::CLI.run({ "config-file": CONFIG_FILE })
21
22
  end
22
23
 
23
- task jekyll: %i[docs] do
24
+ task jekyll: %i[rubocop test docs] do
24
25
  config = Jekyll.configuration({
25
26
  source: "#{__dir__}/docs/html",
26
27
  destination: JEKYLL_SITEDIR
@@ -45,4 +46,4 @@ task stylesheet: %i[autoprefix] do
45
46
  FileUtils.cp_r JEKYLL_CSSDIR, Asciidoctor::Html::ASSETS_PATH, verbose: true
46
47
  end
47
48
 
48
- task default: %i[docs]
49
+ task default: %i[rubocop test docs]