Sha256: e331ec9ba6195e11730fdce571cc08221fa22f2b1a667f77c2f06d4b8cd78c27

Contents?: true

Size: 1.64 KB

Versions: 7

Compression:

Stored size: 1.64 KB

Contents

# coding: utf-8

require "asciidoctor-bibliography"

def init_bibliographer(options: {})
  bibliographer = AsciidoctorBibliography::Bibliographer.new

  opts = options.dup

  db_path = File.join __dir__, "fixtures", opts.delete("bibliography-database")
  bibliographer.database = AsciidoctorBibliography::Database.new.append db_path

  bibliographer.options =
    AsciidoctorBibliography::Options.new.
    merge(
      "bibliography-hyperlinks" => "false",
      "bibliography-prepend-empty" => "false",
    ).merge(opts)

  bibliographer
end

def formatted_citation(macro, options: {})
  bibliographer = init_bibliographer options: options

  macro.gsub(AsciidoctorBibliography::Citation::REGEXP) do
    macro_name, macro_pars = Regexp.last_match.captures
    target_and_attributes_list_pairs = macro_pars.scan(AsciidoctorBibliography::Citation::MACRO_PARAMETERS_REGEXP)
    citation = AsciidoctorBibliography::Citation.new(macro_name, *target_and_attributes_list_pairs)
    bibliographer.add_citation(citation)
    citation.render bibliographer
  end
end

def formatted_bibliography(macro, options: {})
  bibliographer = init_bibliographer options: options
  macro.gsub(AsciidoctorBibliography::Citation::REGEXP) do
    macro_name, macro_pars = Regexp.last_match.captures
    target_and_attributes_list_pairs = macro_pars.scan(AsciidoctorBibliography::Citation::MACRO_PARAMETERS_REGEXP)
    citation = AsciidoctorBibliography::Citation.new(macro_name, *target_and_attributes_list_pairs)
    bibliographer.add_citation(citation)
    # citation.render bibliographer
    index = AsciidoctorBibliography::Index.new("bibliography", "", "")
    index.render(bibliographer).join
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
asciidoctor-bibliography-0.11.0 spec/citation_helper.rb
asciidoctor-bibliography-0.10.3 spec/citation_helper.rb
asciidoctor-bibliography-0.10.2 spec/citation_helper.rb
asciidoctor-bibliography-0.10.1 spec/citation_helper.rb
asciidoctor-bibliography-0.10.0 spec/citation_helper.rb
asciidoctor-bibliography-0.9.2 spec/citation_helper.rb
asciidoctor-bibliography-0.9.1 spec/citation_helper.rb