asciidoctor-latex 1.5.0.10.dev → 1.5.0.11.dev
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/asciidoctor/latex/converter.rb +3 -0
- data/lib/asciidoctor/latex/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 64058070ab85bbf4391b2471331cd7d89d580296
|
|
4
|
+
data.tar.gz: a590808eecff4ea7c41d6cd851be648ce2b5e955
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bbffba791addfd5ea5b80d984977cbd73b1c89b56f7b90fcbc2dc6ebd4584cff788e0a701a54b94a8557fcf30a1f4b8315ef7c282129a281298e729f76c7566
|
|
7
|
+
data.tar.gz: e08cd366b050af28eff4bd37051a46c4e13456d42c04bfd61f4de00159b6d8d3ab0ed3adbbb44c49fd6124d8bdf93b66f01c91af39060311f7896eccdadf02ae
|
|
@@ -483,6 +483,8 @@ module Asciidoctor::LaTeX
|
|
|
483
483
|
|
|
484
484
|
# puts "options: #{document.options}"
|
|
485
485
|
|
|
486
|
+
document.attributes['dialect'] = document.options['dialect'] if document.options['dialect']
|
|
487
|
+
|
|
486
488
|
if ['asciidoc', 'manuscript'].include? document.attributes['dialect']
|
|
487
489
|
|
|
488
490
|
preprocessor DollarPreprocessor if document.basebackend? 'tex'
|
|
@@ -490,6 +492,7 @@ module Asciidoctor::LaTeX
|
|
|
490
492
|
end
|
|
491
493
|
|
|
492
494
|
if ['latex', 'manuscript'].include? document.attributes['dialect']
|
|
495
|
+
|
|
493
496
|
preprocessor ClickStyleInsert if document.attributes['css_extras'] == 'include'
|
|
494
497
|
preprocessor MacroPreprocessor
|
|
495
498
|
|