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
552 B
15 lines
552 B
require 'squib' |
|
|
|
Squib::Deck.new(config: 'config_text_markup.yml') do |
|
text str: %{"'Yaml ain't markup', he says"}, |
|
x: 10, y: 10, width: 300, height: 200, font: 'Serif 20', |
|
markup: true, hint: :cyan |
|
save_png prefix: 'config_text_' |
|
end |
|
|
|
Squib::Deck.new(config: 'config_disable_quotes.yml') do |
|
text str: %{This has typographic sugar --- and ``explicit'' quotes --- but the quotes are "dumb"}, |
|
x: 10, y: 10, width: 300, height: 200, font: 'Serif 20', |
|
markup: true, hint: :cyan |
|
save_png prefix: 'config_disable_text_' |
|
end |