asciidoctor-dita-topic 1.0.5 → 1.0.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/lib/dita-topic.rb +2 -2
- 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: af4723a781b24e522548c852bd873f9db6547c0bc546365b5cabdbfdd296b2f9
|
|
4
|
+
data.tar.gz: 4485c9cdc6f4232dbef55d5e837a9cd9206a716caac657302591b00129d44515
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95e315d78112be6948c464167e76318e5211e9b6f0e16822b82ec2b4bfa419b0900ac11dc9108570a341485106c2e68ea332b41a37505e8cdcb08d59f27a40b0
|
|
7
|
+
data.tar.gz: 5cd3c94ff7b4f25684b334dfc5282aa7452ba07060136589bdbb373d31e3c1147e1439783668336e7c78aa2761959f4149a1df22ed3c84fcf702b145811dfda7
|
data/lib/dita-topic.rb
CHANGED
|
@@ -107,7 +107,7 @@ class DitaTopic < Asciidoctor::Converter::Base
|
|
|
107
107
|
number = 0
|
|
108
108
|
|
|
109
109
|
# Open the table:
|
|
110
|
-
result = ['<table>']
|
|
110
|
+
result = ['<table outputclass="callout-list">']
|
|
111
111
|
result << %(<tgroup cols="2">)
|
|
112
112
|
result << %(<colspec colwidth="#{node.attr 'labelwidth', 15}*" />)
|
|
113
113
|
result << %(<colspec colwidth="#{node.attr 'itemwidth', 85}*" />)
|
|
@@ -709,7 +709,7 @@ class DitaTopic < Asciidoctor::Converter::Base
|
|
|
709
709
|
|
|
710
710
|
def compose_horizontal_dlist node
|
|
711
711
|
# Open the table:
|
|
712
|
-
result = ['<table>']
|
|
712
|
+
result = ['<table outputclass="horizontal-dlist">']
|
|
713
713
|
result << %(<tgroup cols="2">)
|
|
714
714
|
result << %(<colspec colwidth="#{node.attr 'labelwidth', 15}*" />)
|
|
715
715
|
result << %(<colspec colwidth="#{node.attr 'itemwidth', 85}*" />)
|