Sha256: 186a674e45490e651743aa62bfda3405de447b11415c6a3f2c97cf2bf0224ca4
Contents?: true
Size: 894 Bytes
Versions: 16
Compression:
Stored size: 894 Bytes
Contents
# frozen_string_literal: true module Bolognese module Writers module RisWriter def ris { "TY" => ris_type, "T1" => parse_attributes(title, content: "text", first: true), "T2" => container_title, "AU" => to_ris(author), "DO" => doi, "UR" => b_url, "AB" => parse_attributes(description, content: "text", first: true), "KW" => Array.wrap(keywords).map { |k| parse_attributes(k, content: "text", first: true) }.presence, "PY" => publication_year, "PB" => publisher, "LA" => language, "VL" => volume, "IS" => issue, "SP" => first_page, "EP" => last_page, "ER" => "" }.compact.map { |k, v| v.is_a?(Array) ? v.map { |vi| "#{k} - #{vi}" }.join("\r\n") : "#{k} - #{v}" }.join("\r\n") end end end end
Version data entries
16 entries across 16 versions & 1 rubygems