diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-08-19 01:37:59 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-08-19 01:37:59 -0600 |
| commit | 61908991cccd22b9b48ef3380f54bfeebfffdff1 (patch) | |
| tree | 2776425cd60a7b1e87bc58cac3bf30c96eb4a119 /lib | |
| parent | 1f2b7b5e632c5f85869b6d5c45d66841fa3a4189 (diff) | |
swap nesting order in running content to make intent more clear
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/asciidoctor/pdf/converter.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/asciidoctor/pdf/converter.rb b/lib/asciidoctor/pdf/converter.rb index e5797648..7eb94b90 100644 --- a/lib/asciidoctor/pdf/converter.rb +++ b/lib/asciidoctor/pdf/converter.rb @@ -3608,9 +3608,9 @@ module Asciidoctor stamp stamp_names[side] if stamp_names - theme_font periphery do - canvas do - bounding_box [trim_styles[:content_left][side], trim_styles[:top][side]], width: trim_styles[:content_width][side], height: trim_styles[:height] do + canvas do + bounding_box [trim_styles[:content_left][side], trim_styles[:top][side]], width: trim_styles[:content_width][side], height: trim_styles[:height] do + theme_font periphery do if trim_styles[:column_rule_color] && (trim_column_rule_width = trim_styles[:column_rule_width]) > 0 trim_column_rule_spacing = trim_styles[:column_rule_spacing] else |
