Sha256: 7157a71a208174aec1a3bc69d15aab127663cdb0a74357fed721bac6542b7a0e

Contents?: true

Size: 1.08 KB

Versions: 8

Compression:

Stored size: 1.08 KB

Contents

module Bolognese
  module Writers
    module CiteprocWriter
      def citeproc
        hsh = {
          "type" => citeproc_type,
          "id" => identifier,
          "categories" => Array.wrap(keywords).map { |k| parse_attributes(k, content: "text", first: true) }.presence,
          "language" => language,
          "author" => to_citeproc(author),
          "editor" => to_citeproc(editor),
          "issued" => date_published ? get_date_parts(date_published) : nil,
          "submitted" => date_submitted ? get_date_parts(date_submitted) : nil,
          "abstract" => parse_attributes(description, content: "text", first: true),
          "container-title" => container_title,
          "DOI" => doi,
          "issue" => issue,
          "page" => [first_page, last_page].compact.join("-").presence,
          "publisher" => publisher,
          "title" => parse_attributes(title, content: "text", first: true),
          "URL" => b_url,
          "version" => b_version,
          "volume" => volume
        }.compact
        JSON.pretty_generate hsh.presence
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bolognese-0.10.21 lib/bolognese/writers/citeproc_writer.rb
bolognese-0.10.20 lib/bolognese/writers/citeproc_writer.rb
bolognese-0.10.19 lib/bolognese/writers/citeproc_writer.rb
bolognese-0.10.18 lib/bolognese/writers/citeproc_writer.rb
bolognese-0.10.17 lib/bolognese/writers/citeproc_writer.rb
bolognese-0.10.16 lib/bolognese/writers/citeproc_writer.rb
bolognese-0.10.15 lib/bolognese/writers/citeproc_writer.rb
bolognese-0.10.14 lib/bolognese/writers/citeproc_writer.rb