aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2024-03-20 11:25:44 +0100
committerMiquel Sabaté Solà <msabate@suse.com>2024-03-20 11:25:44 +0100
commit2cf0ffbffc8442efaba12364a07fc0f5e58b7432 (patch)
treec4c253b8adca4491ed506e3762a04e7a41ce4adf /lib
parent120658d6b6314f0a90bd7656baee734753bad2db (diff)
downloadoperum-2cf0ffbffc8442efaba12364a07fc0f5e58b7432.tar.gz
operum-2cf0ffbffc8442efaba12364a07fc0f5e58b7432.zip
Support underscore in the exporters on titles
Underscores on titles are meant to be replaced by something else on each exporter (e.g. removed on CSV, or surrounded by \emph on UOC). Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/csv_exporter.rb14
-rw-r--r--lib/uoc_exporter.rb21
2 files changed, 31 insertions, 4 deletions
diff --git a/lib/csv_exporter.rb b/lib/csv_exporter.rb
index a44815d..0463ba6 100644
--- a/lib/csv_exporter.rb
+++ b/lib/csv_exporter.rb
@@ -12,10 +12,18 @@ class CsvExporter < BaseExporter
str
end
+ protected
+
+ # Generate a new CSV line from the given `thing`.
def thing_to_csv(thing:)
- CSV.generate_line([thing.target, thing.authors, thing.editors, thing.year, thing.title,
- thing.note, thing.insideof, thing.url, thing.publisher, thing.kind,
- thing.access, thing.bought_at],
+ CSV.generate_line([thing.target, thing.authors, thing.editors, thing.year,
+ clean_title(title: thing.title), thing.note, thing.insideof,
+ thing.url, thing.publisher, thing.kind, thing.access, thing.bought_at],
quote_empty: false)
end
+
+ # Clean the given title from underscores and other such characters.
+ def clean_title(title:)
+ title.delete('_')
+ end
end
diff --git a/lib/uoc_exporter.rb b/lib/uoc_exporter.rb
index 9a83d7c..e8dcc62 100644
--- a/lib/uoc_exporter.rb
+++ b/lib/uoc_exporter.rb
@@ -16,7 +16,7 @@ class UocExporter < BaseExporter
# Returns the head of a line, containing authors, year, title and, if
# available, the "inside of" information.
def head(thing:)
- str = "#{parse_authors(thing:)} (#{thing.year}). \\emph{#{thing.title}}."
+ str = "#{parse_authors(thing:)} (#{thing.year}). #{parse_title(title: thing.title)}."
if thing.insideof.present?
str += " #{inside_of(thing.insideof)}"
@@ -26,6 +26,25 @@ class UocExporter < BaseExporter
str
end
+ # Returns the title without underscores and with the expected formatting.
+ def parse_title(title:)
+ str = ''
+ seen = false
+
+ # I'm sure there is a clever (and comboluted) regexp that can also achieve
+ # this, but after some tries I decided to cut the crap.
+ title.each_char do |c|
+ if c == '_'
+ str += seen ? '\emph{' : '}'
+ seen = !seen
+ else
+ str += c
+ end
+ end
+
+ "\\emph{#{str}}"
+ end
+
# Parse the authors as delivered by `thing.authors` and render them in the
# proper format.
def parse_authors(thing:)