asciidoctor-html 0.1.7 → 0.1.9
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/CHANGELOG.md +10 -0
- data/README.md +2 -2
- data/assets/css/styles.css +2 -2
- data/assets/css/styles.css.map +1 -1
- data/lib/asciidoctor/html/book.rb +1 -2
- data/lib/asciidoctor/html/converter.rb +1 -1
- data/lib/asciidoctor/html/list.rb +5 -2
- data/lib/asciidoctor/html/pagination.rb +2 -0
- data/lib/asciidoctor/html/table.rb +4 -4
- data/lib/asciidoctor/html/template.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5e57fa29a9d949a98695c7fc7177669a789a6aefaf8f631de4569e2dbbd499c
|
4
|
+
data.tar.gz: 5906f4f8a8f7ca42d9007f0de5f063f5183c5b8089e6f27e0f761154984a0ca6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1e71d43e38c1a85eee17888809d959d0e635913255cc6271f477a7b22a90528c16d8e3936442760f86d24d8a9c39f30332756d6c058cbdb04c4f3ff54ffe24c
|
7
|
+
data.tar.gz: bb91461ceaf84ab35945ea07b31d7a1ebf31fd61e74c851d322441ea4b105845db836df0546e0fff8504efc2aa77bc631797a28ae92e75dc2177ba0ccc7326be
|
data/CHANGELOG.md
CHANGED
@@ -46,3 +46,13 @@
|
|
46
46
|
- Support for inlining SVGs.
|
47
47
|
- CLI now copies assets from srcdir to outdir.
|
48
48
|
- Pagination links at the bottom of content.
|
49
|
+
|
50
|
+
## [0.1.8] - 2025-08-06
|
51
|
+
|
52
|
+
- Hide paginator on single page website.
|
53
|
+
- Add description meta tags to docs pages.
|
54
|
+
|
55
|
+
## [0.1.9] - 2025-08-07
|
56
|
+
|
57
|
+
- Changed unmarked list role to an option.
|
58
|
+
- Roomy table option.
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# asciidoctor-html
|
4
4
|
|
5
|
-
|
5
|
+
A simple static site generator for AsciiDoc documents based on [Asciidoctor](https://github.com/asciidoctor/asciidoctor).
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -28,7 +28,7 @@ sources.
|
|
28
28
|
Assuming your config file is in the same directory as your AsciiDoc sources, execute:
|
29
29
|
|
30
30
|
```shell
|
31
|
-
cd
|
31
|
+
cd ASCIIDOC_SOURCES_DIR
|
32
32
|
adoctohtml [--watch]
|
33
33
|
```
|
34
34
|
|