All Downloads are FREE. Search and download functionalities are using the official Maven repository.

css.default.params Maven / Gradle / Ivy




    
        
            
                
                    auto
                    Hyphenate words
                    manual
                    Only hyphenate words where there are soft hyphens (U+00AD)
                    none
                    Never hyphenate words
                
            
        
        
            

Translation/formatting of text: Hyphenation

Hyphenation policy. Makes the variable `$hyphenation` available in style sheets and includes the following rule by default: ~~~sass :root { hyphens: $hyphenation; } ~~~ This means that words are hyphenated according to the specified policy, except where overridden by more specific CSS rules. See the CSS specification for more info: - the [`hyphens`](http://braillespecs.github.io/braille-css/#the-hyphens-property) property In addition, special rules may apply at page boundaries, see the "Hyphenation at page boundaries" option.

single Single double Double

Translation/formatting of text: Line spacing

Single or double line spacing. Makes the variable `$line-spacing` available in style sheets and includes the following rule by default: ~~~sass @if $line-spacing == double { :root { line-height: 2; } } ~~~ See the CSS specification for more info: - the [`line-height`](http://braillespecs.github.io/braille-css/#h3_the-line-height-property) property

Translation/formatting of text: Capital letters

When enabled, will indicate capital letters. Makes the variable `$capital-letters` available in style sheets and includes the following rule by default: ~~~sass @if $capital-letters != true { :root { text-transform: lowercase; } } ~~~

Block elements: Include captions

When enabled, will include captions for images, tables, and so on. Makes the variable `$include-captions` available in style sheets and includes the following rule by default: ~~~sass caption { display: if($include-captions, block, none); } ~~~

Block elements: Include images

When enabled, will include the alt text of the images. When disabled, the images will be completely removed. Makes the variable `$include-images` available in style sheets and includes the following rule by default: ~~~sass @if $include-images { img::after { content: attr(alt); } } ~~~

Block elements: Include line groups

When disabled, lines in a linegroup are joined together to form one block. Makes the variable `$include-line-groups` available in style sheets and includes the following rule by default: ~~~sass linegroup line { display: if($include-line-groups, block, inline); } ~~~

Inline elements: Include production notes

When enabled, production notes are included in the content. Makes the variable `$include-production-notes` available in style sheets and includes the following rule by default: ~~~sass prodnote { display: if($include-production-notes, block, none); } ~~~





© 2015 - 2025 Weber Informatics LLC | Privacy Policy