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.
15 lines
305 B
15 lines
305 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.generate_month(options.month, path: options.path)
|
|
end
|
|
end
|
|
|