Sha256: cb66215702db8d886f6c8995d881e77ea37c3c435cb21d89ec5be1796ba345e0
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true module Asciidoctor module PDF class Pdfmark include ::Asciidoctor::PDF::Sanitizer def initialize doc @doc = doc end def generate doc = @doc if doc.attr? 'reproducible' mod_date = creation_date = ::Time.at 0 else mod_date = ::Time.parse doc.attr 'docdatetime' rescue (now ||= ::Time.now) creation_date = ::Time.parse doc.attr 'localdatetime' rescue (now ||= ::Time.now) end # FIXME use sanitize: :plain_text once available content = <<~EOS [ /Title #{sanitize(doc.doctitle use_fallback: true).to_pdf} /Author #{(doc.attr 'authors').to_pdf} /Subject #{(doc.attr 'subject').to_pdf} /Keywords #{(doc.attr 'keywords').to_pdf} /ModDate #{mod_date.to_pdf} /CreationDate #{creation_date.to_pdf} /Creator (Asciidoctor PDF #{::Asciidoctor::PDF::VERSION}, based on Prawn #{::Prawn::VERSION}) /Producer #{(doc.attr 'publisher').to_pdf} /DOCINFO pdfmark EOS content end def generate_file pdf_file # QUESTION should we use the extension pdfmeta to be more clear? ::File.write %(#{pdf_file}mark), generate end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
asciidoctor-pdf-1.5.0.beta.7 | lib/asciidoctor/pdf/pdfmark.rb |
asciidoctor-pdf-1.5.0.beta.6 | lib/asciidoctor/pdf/pdfmark.rb |