Sha256: 152510f6f248d85b99edae309456c0cb894b180cf676a79974e74a709089b6b6

Contents?: true

Size: 1.88 KB

Versions: 3

Compression:

Stored size: 1.88 KB

Contents

# Settings in the config.yml are overriding Squib's defaults. Anything in the main script will override this.

# Looking for DPI? It needs to be a parameter to Squib::Deck.new. See https://squib.readthedocs.io/en/latest/dsl/deck.html

#antialias: best #recommended. Only about 10% slower than fast
#antialias: default # set the anti-aliasing algorithm. default defers to the underlying graphics device. See http://www.cairographics.org/manual/cairo-cairo-t.html#cairo-antialias-t

# Text hints are used to show the boundaries of text boxes.
# Can be enabled/disabled at the command-level, or set globally with `set`
#text_hint: '#F00'

# Show progress bars on the command line for potentially long-running operations
progress_bars: true

#Enable some custom colors that can be used in any color
#custom_colors:
#  foo: '#abc'

#For reading image file command (e.g. png and svg), read from this directory instead
img_dir: img
#img_dir: img-bw

# Use a SVG cairo back end, instead of an in-memory buffer
# backend: :memory # default
# backend: :svg    # can create scalable pdfs, but rendering done at the printer level is not as good as Cairo.

# Configure what text markup uses replace characters
# Below are the defaults
# lsquote: "\u2018" #note that Yaml wants double quotes here to use escape chars
# rsquote: "\u2019"
# ldquote: "\u201C"
# rdquote: "\u201D"
# em_dash: "\u2014"
# en_dash: "\u2013"
# ellipsis: "\u2026"

# We can also disallow smart quotes and only allow explicit replacements with ``LaTeX-style'' quotes.
# smart_quotes: false

# By default, Squib warns when a text box is ellipsized. This can get verbose
# and can be turned off here
warn_ellipsize: true # default
# warn_ellipsize: false # turn off entirely

# By default, Squib will warn if a PNG is being up-scaled.
warn_png_scale: true # default
# warn_png_scale: false # turn off entirely

# How many pixels are in a "cell"?
# cell_px: 37.5 # default

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
squib-0.19.0 lib/squib/builtin/projects/advanced/config.yml
squib-0.19.0b lib/squib/builtin/projects/advanced/config.yml
squib-0.19.0a lib/squib/builtin/projects/advanced/config.yml