arcanistzed / pdf-sheet

A system agnostic tool to export your Foundry character sheet to a PDF!
https://arcanist.me
MIT License
14 stars 58 forks source link

Minimize text option #58

Open AlessioDP opened 1 year ago

AlessioDP commented 1 year ago

Added a setting for optional minimize text for mappings.

The goal is to make an option that you can access in a mapping file to choose what type of text to print.

Example of a mapping code:

const minimizeText = game.settings.get(Pdfconfig.ID, 'minimizeText');
if (minimizeText) {
  // Do X
} else {
  // Do Y
}