Class: Reading::Parsing::Rows::Regular::Notes
- Inherits:
-
Column
show all
- Defined in:
- lib/reading/parsing/rows/regular_columns/notes.rb
Overview
Constant Summary
Constants inherited
from Column
Column::SHARED_REGEXES
Class Method Summary
collapse
Methods inherited from Column
column_name, flatten_into_arrays, regexes_before_formats, segment_group_separator, split_by_format?, split_by_segment?, split_by_segment_group?, to_sym, tweaks
Class Method Details
.regexes(segment_index) ⇒ Object
12
13
14
15
16
|
# File 'lib/reading/parsing/rows/regular_columns/notes.rb', line 12
def self.regexes(segment_index)
[%r{\A
(?:(?<blurb>💬)|(?<private>🔒))?(?<content>.+)
\z}x]
end
|
.segment_separator ⇒ Object
8
9
10
|
# File 'lib/reading/parsing/rows/regular_columns/notes.rb', line 8
def self.segment_separator
/\s*--\s*/
end
|