asciidoctor-html 0.1.6 → 0.1.7
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 +12 -0
- data/assets/css/styles.css +2 -2
- data/assets/css/styles.css.map +1 -1
- data/assets/favicon/android-chrome-192x192.png +0 -0
- data/assets/favicon/android-chrome-512x512.png +0 -0
- data/assets/favicon/apple-touch-icon.png +0 -0
- data/assets/favicon/favicon-16x16.png +0 -0
- data/assets/favicon/favicon-32x32.png +0 -0
- data/assets/favicon/favicon.ico +0 -0
- data/lib/asciidoctor/html/bi_inline_macro.rb +0 -1
- data/lib/asciidoctor/html/book.rb +53 -32
- data/lib/asciidoctor/html/cli.rb +29 -14
- data/lib/asciidoctor/html/converter.rb +28 -15
- data/lib/asciidoctor/html/figure.rb +2 -0
- data/lib/asciidoctor/html/highlightjs.rb +46 -39
- data/lib/asciidoctor/html/list.rb +2 -3
- data/lib/asciidoctor/html/pagination.rb +50 -0
- data/lib/asciidoctor/html/popovers.rb +32 -35
- data/lib/asciidoctor/html/ref_tree_processor.rb +6 -3
- data/lib/asciidoctor/html/sc_inline_macro.rb +21 -0
- data/lib/asciidoctor/html/scroll.rb +30 -0
- data/lib/asciidoctor/html/sidebar.rb +41 -0
- data/lib/asciidoctor/html/table.rb +7 -4
- data/lib/asciidoctor/html/template.rb +51 -46
- data/lib/asciidoctor/html/utils.rb +18 -9
- metadata +5 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a39fc2fadfd3b4baeee4f26026e0195a891e418a4a3c8458dff6c5984054ffe2
|
4
|
+
data.tar.gz: 9fe38d49a21d8bb8d1a59141b868ae5b34b8ebc644ba903cab30c7c663694021
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f74d4a0427d71e18516f4bdff181a6dd793fced544026fa9d7d256015910b2b3fd4bf6a0c2186d057d1f31c592b27793ddb840c7a869514a7e17b672968d9924
|
7
|
+
data.tar.gz: 22fa36d9ba49b5220e422d2cff6517c3224ec06eae7bcf96de4cdb700b937cdded026a615d203cea4d968ebf5c6fb45697267def1272f4acf5de1f850805a222
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -34,3 +34,15 @@
|
|
34
34
|
- Support for shifted ordered lists.
|
35
35
|
- Generation of XML sitemap.
|
36
36
|
- New favicon.
|
37
|
+
|
38
|
+
## [0.1.7] - 2025-08-06
|
39
|
+
|
40
|
+
- Completion of documentation.
|
41
|
+
- Upgrade to MathJax v4.
|
42
|
+
- Fix scrolling bugs on mobile.
|
43
|
+
- CSS improvements.
|
44
|
+
- {parskip} and {dollar} document attributes.
|
45
|
+
- SmallCaps macro.
|
46
|
+
- Support for inlining SVGs.
|
47
|
+
- CLI now copies assets from srcdir to outdir.
|
48
|
+
- Pagination links at the bottom of content.
|