fabianmichael / kirby-typography

Typographic enhancements for your Kirby-driven website.
GNU General Public License v3.0
78 stars 4 forks source link

Can't disable hyphenation #11

Closed runxel closed 8 years ago

runxel commented 8 years ago

My current config.php looks like this:

c::set([
    'typography.dashes'          => 'false', // I already care for that
    'typography.hyphenation'     => 'false' // disable hyphenation
]);

But it doesn't work. The text still gets hyphenated :(

fabianmichael commented 8 years ago

Hey @runxel,

you have use unquoted values for boolean options to make this work.

Cheers Fabian

c::set([
    'typography.dashes'          => false, // I already care for that
    'typography.hyphenation'     => false // disable hyphenation
]);