Class: Asciidoctor::PDF::FormattedText::Formatter
- Includes:
- Logging
- Defined in:
- lib/asciidoctor/pdf/formatted_text/formatter.rb
Constant Summary collapse
- FormattingSnifferPattern =
/[<&]/
- WHITESPACE =
%( \t\n)
Instance Attribute Summary collapse
-
#scratch ⇒ Object
Returns the value of attribute scratch.
Instance Method Summary collapse
-
#array_paragraphs(fragments) ⇒ Object
The original purpose of this method is to split paragraphs, but our formatter only works on paragraphs that have been presplit.
- #format(string, *args) ⇒ Object
-
#initialize(options = {}) ⇒ Formatter
constructor
A new instance of Formatter.
Constructor Details
#initialize(options = {}) ⇒ Formatter
Returns a new instance of Formatter.
14 15 16 17 18 |
# File 'lib/asciidoctor/pdf/formatted_text/formatter.rb', line 14 def initialize = {} @parser = MarkupParser.new @transform = Transform.new merge_adjacent_text_nodes: true, theme: [:theme] @scratch = false end |
Instance Attribute Details
#scratch ⇒ Object
Returns the value of attribute scratch.
9 10 11 |
# File 'lib/asciidoctor/pdf/formatted_text/formatter.rb', line 9 def scratch @scratch end |
Instance Method Details
#array_paragraphs(fragments) ⇒ Object
The original purpose of this method is to split paragraphs, but our formatter only works on paragraphs that have been presplit. Therefore, we just need to wrap the fragments in a single-element array (representing a single paragraph) and return them.
37 38 39 |
# File 'lib/asciidoctor/pdf/formatted_text/formatter.rb', line 37 def array_paragraphs fragments [fragments] end |
#format(string, *args) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/asciidoctor/pdf/formatted_text/formatter.rb', line 20 def format string, *args = args[0] || {} string = string.tr_s WHITESPACE, ' ' if [:normalize] inherited = [:inherited] if FormattingSnifferPattern.match? string if (parsed = @parser.parse string) return @transform.apply parsed.content, [], inherited end reason = @parser.failure_reason.sub %r/ at line \d+, column \d+ \(byte (\d+)\)(.*)/, '\2 at byte \1' logger.error %(failed to parse formatted text: #{string} (reason: #{reason})) unless @scratch end [inherited ? (inherited.merge text: string) : { text: string }] end |