asciidoctor-html 0.1.4 → 0.1.6
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 +2 -2
- data/CHANGELOG.md +21 -0
- data/README.md +6 -2
- 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/book.rb +10 -4
- data/lib/asciidoctor/html/cli.rb +2 -2
- data/lib/asciidoctor/html/converter.rb +40 -2
- data/lib/asciidoctor/html/figure.rb +2 -2
- data/lib/asciidoctor/html/highlightjs.rb +1 -1
- data/lib/asciidoctor/html/ref_tree_processor.rb +24 -3
- data/lib/asciidoctor/html/table.rb +37 -0
- data/lib/asciidoctor/html/template.rb +36 -8
- data/lib/asciidoctor/html/utils.rb +2 -6
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc941971db15a22b9e9221208f0e7fee076b0db1fed70b54945accf7611eaecf
|
4
|
+
data.tar.gz: b55d4012d821f2445fa5b372ec720d9fef11b2a409a44df130685f5d3846b1c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9bbd37c254d19a428f68939796ce33ad649859e0e6999fa3e5ad90815b924f1b301e6fc49579a7669baf92b53f8e02c079380f62ad8ba8eec170b076e5342c1d
|
7
|
+
data.tar.gz: 3ae6083f00cf86157b657ed20ec24d19fee5ea505294ee496a783594cf21763475e44a684f409341163fa86fb78e87c6b6bce491eb129a93f1089b460960e198
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -13,3 +13,24 @@
|
|
13
13
|
## [0.1.2] - 2025-06-29
|
14
14
|
|
15
15
|
- Allow for override reftext in list item anchor.
|
16
|
+
|
17
|
+
## [0.1.3] - 2025-07-27
|
18
|
+
|
19
|
+
- Many more custom conversions of AsciiDoc contexts.
|
20
|
+
- Add adoctohtml executable.
|
21
|
+
|
22
|
+
## [0.1.4] - 2025-07-27
|
23
|
+
|
24
|
+
- Support for single page site.
|
25
|
+
|
26
|
+
## [0.1.5] - 2025-07-27
|
27
|
+
|
28
|
+
- CSS adjusted to handle single page site.
|
29
|
+
|
30
|
+
## [0.1.6] - 2025-07-29
|
31
|
+
|
32
|
+
- CSS improvements.
|
33
|
+
- Added conversion of tables and literal blocks.
|
34
|
+
- Support for shifted ordered lists.
|
35
|
+
- Generation of XML sitemap.
|
36
|
+
- New favicon.
|
data/README.md
CHANGED
@@ -40,12 +40,16 @@ Then, run `bundle exec rake` to run the tests. You can also run `bin/cli` to tes
|
|
40
40
|
Run `jekyll serve --livereload` inside the `docs/html` directory to preview your changes after running `bundle exec rake`.
|
41
41
|
|
42
42
|
To install this gem onto your local machine, run `bundle exec rake install`.
|
43
|
-
To release a new version,
|
43
|
+
To release a new version,
|
44
|
+
|
45
|
+
- update the version number in `asciidoctor-html.gemspec`,
|
46
|
+
- update the `CHANGELOG.md`,
|
47
|
+
|
44
48
|
and then run
|
45
49
|
|
46
50
|
```shell
|
47
51
|
bundle exec rake stylesheet
|
48
|
-
git commit -am "
|
52
|
+
git commit -am "prepare for new release"
|
49
53
|
bundle exec rake release
|
50
54
|
```
|
51
55
|
|