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 +4 -4
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +5 -0
- data/Rakefile +4 -3
- data/assets/css/styles.css +2 -2
- data/lib/asciidoctor/html/book.rb +10 -2
- data/lib/asciidoctor/html/cli.rb +6 -14
- data/lib/asciidoctor/html/flip.rb +22 -1
- data/lib/asciidoctor/html/jupyterlite.rb +13 -8
- data/lib/asciidoctor/html/reuse_block_macro.rb +39 -0
- data/lib/asciidoctor/html/utils.rb +10 -0
- data/lib/asciidoctor/html/version.rb +1 -1
- metadata +5 -9
- data/exe/build-jupyterlite +0 -35
- data/jupyterlite/content/data/matplotlib.png +0 -0
- data/jupyterlite/content/pyodide/matplotlib.ipynb +0 -113
- data/jupyterlite/content/python.ipynb +0 -721
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2444911733799e781028aff029ba6a9bbf2eff1b59f1879b04ccada19980960b
|
|
4
|
+
data.tar.gz: c27978469bf6f782dfc949d6d16f962acbe0273c529a7f407b82431fcb19b142
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c81b9b77dddc638a78d8bf7d718c37fe838f3c1aa5d0f4d0b806ab54bb502809d67c902c62764498f2d2ece2de38c13fcfcb7d5fcf6812e50f15399ce26d140c
|
|
7
|
+
data.tar.gz: 49fa266c48fbe723144906e9805495cf99f2ae25f5b7c3cdd0833abe78bac79aadeeb1e1fdecd4d14db98ec26a991aa720a122e7a757261044f013dc05942370
|
data/.rubocop.yml
CHANGED
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
|
-
|
|
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]
|