blob: 9194813dcbcbb5fd958bea6baf851c3f120c7676 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
module DrawWrapIndicator
WrapIndicatorChar = ?\u23ce
module_function
def render_in_front fragment
doc = fragment.document
wrap_indicator_color = doc.theme.code_linenum_font_color
wrap_indicator_width = doc.rendered_width_of_char WrapIndicatorChar
wrap_indicator_fragment = { text: WrapIndicatorChar, color: wrap_indicator_color }
wrap_indicator_fragment[:size] = doc.font_size * 0.75
y_offset = (doc.font_size - wrap_indicator_fragment[:size]) * 0.5
wrap_indicator_options = {
document: doc,
at: [doc.bounds.right - (wrap_indicator_width * 0.5), fragment.top - y_offset],
width: wrap_indicator_width,
align: :center,
}
doc.bounds.add_right_padding -wrap_indicator_width
(::Prawn::Text::Formatted::Box.new [wrap_indicator_fragment], wrap_indicator_options).render
doc.bounds.add_right_padding wrap_indicator_width
end
end
module LineWrapWithIndicator
def add_fragment_to_line fragment
@arranger.consumed.last[:callback] = [DrawWrapIndicator] unless (return_val = super)
return_val
end
end
module WrapWithIndicator
def wrap array
@line_wrap.extend LineWrapWithIndicator
super
end
end
class PDFConverterCodeWithWrapIndicator < (Asciidoctor::Converter.for 'pdf')
register_for 'pdf'
def arrange_block node, &block
return super if node.content_model != :verbatim || scratch?
# replace previous line with next commented line if you don't want the wrap indicator when linenums are enabled
#return super if node.content_model != :verbatim || (node.option? 'linenums') || scratch?
super node do |extent|
(block.binding.local_variable_get :extensions) << WrapWithIndicator if extent
instance_exec extent, &block
end
end
end
|