On the [Remarkable](https://remarkable.com/) you can use a PDF as a template. This will fill the blank page with the content of the PDF and you can write over it.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
330 B
18 lines
330 B
require 'date'
|
|
|
|
require "agenda_pdf/version"
|
|
require "agenda_pdf/options_parser"
|
|
require "agenda_pdf/pdf_generator"
|
|
|
|
module AgendaPdf
|
|
class Error < StandardError; end
|
|
|
|
def self.execute(argv)
|
|
options = OptionsParser.new
|
|
|
|
PdfGenerator.new(options.path) do
|
|
text 'hello world'
|
|
text argv.to_s
|
|
end
|
|
end
|
|
end
|
|
|