Sha256: d31c0641b78e7ab3b4d68fde36b3ccdc02855493d37e8ac26ba2a0089c4fd006

Contents?: true

Size: 642 Bytes

Versions: 4

Compression:

Stored size: 642 Bytes

Contents

/* Hyphenation */

// Basic hyphenation variables
p, ul, ol, dl {
    hyphens: $hyphenation;
    hyphenate-after: $hyphenate-after; // Minimum letters on new line after hyphen
    hyphenate-before: $hyphenate-before; // Minimum letters at end of line before hyphen
    hyphenate-lines: $hyphenate-lines; // Maximum number of consecutive lines ending with hyphens
}

// Is a hyphenation dictionary specified?
// If not, don't use one, and let Prince use its default.
p, ul, ol, dl {
    @if $hyphenation-dictionary == "" {}
    @else {
        prince-hyphenate-patterns: url("dictionaries/#{$hyphenation-dictionary}");
    }
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
electric-book-classic-theme-0.1.3 _sass/partials/_print-hyphenation.scss
electric-book-classic-theme-0.1.2 _sass/partials/_print-hyphenation.scss
electric-book-classic-theme-0.1.1 _sass/partials/_print-hyphenation.scss
electric-book-classic-theme-0.1.0 _sass/partials/_print-hyphenation.scss