diff --git a/README.md b/README.md index 1fab368..2fa66ad 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,12 @@ Create a `Cardfile` in your working directory. It should look something like thi # data[:replacements]['Superpower Text'] << '!!' # } + # only sheets with this in the title will be read for card data + # c.card_sheet_identifier = "Card Data" + + # prepend this PDF to the outputted PDF (useful for game rules) + # c.prepend_pdf = "rules.pdf" + c.data_source = "data.ods" end ``` diff --git a/skel/Cardfile b/skel/Cardfile index 6c8918c..fcf975f 100644 --- a/skel/Cardfile +++ b/skel/Cardfile @@ -4,6 +4,12 @@ # data[:replacements]['Superpower Text'] << '!!' # } + # only sheets with this in the title will be read for card data + # c.card_sheet_identifier = "Card Data" + + # prepend this PDF to the outputted PDF (useful for game rules) + # c.prepend_pdf = "rules.pdf" + c.data_source = "data.ods" end