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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a95999dd376f1f3bcd4fd8151bc86c30b5f621e50ed796bf7e843237544ae3a
4
- data.tar.gz: 1f2abdce5c118993a862409e6c1717184eddd3715f3e361416448d9ea1a5038d
3
+ metadata.gz: bc941971db15a22b9e9221208f0e7fee076b0db1fed70b54945accf7611eaecf
4
+ data.tar.gz: b55d4012d821f2445fa5b372ec720d9fef11b2a409a44df130685f5d3846b1c5
5
5
  SHA512:
6
- metadata.gz: 69cce078a86b8a8d7653ffd85c085d61f4968bad1fb3910b8afeef4ab2d4144732f96907c1fc863cc4e77b8b75de643d9ee976927f68501e78abdcf302d68f8f
7
- data.tar.gz: aff0bd28a243e3feab5942256e800fcd71c76799ba0818ec7d9c1ac660aae0f15850523ac7918f70ef8bc62c894c9b887592e7e6aa15fa6760cc2bbd10e0f8c3
6
+ metadata.gz: 9bbd37c254d19a428f68939796ce33ad649859e0e6999fa3e5ad90815b924f1b301e6fc49579a7669baf92b53f8e02c079380f62ad8ba8eec170b076e5342c1d
7
+ data.tar.gz: 3ae6083f00cf86157b657ed20ec24d19fee5ea505294ee496a783594cf21763475e44a684f409341163fa86fb78e87c6b6bce491eb129a93f1089b460960e198
data/.rubocop.yml CHANGED
@@ -18,10 +18,10 @@ Metrics/MethodLength:
18
18
  Max: 35
19
19
 
20
20
  Metrics/ClassLength:
21
- Max: 200
21
+ Max: 300
22
22
 
23
23
  Metrics/ModuleLength:
24
- Max: 200
24
+ Max: 300
25
25
 
26
26
  Style/StringLiterals:
27
27
  EnforcedStyle: double_quotes
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, update the version number in `asciidoctor-html.gemspec`,
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 "build stylesheet for new release"
52
+ git commit -am "prepare for new release"
49
53
  bundle exec rake release
50
54
  ```
51
55