@lokse/plugin-non-breaking-spaces
TypeScript icon, indicating that this package has built-in type declarations

2.3.1 • Public • Published

@lokse/plugin-non-breaking-spaces

Plugin for replacing white spaces after single letter characters with non-breking space.

In some languages there are special chracters such as § or ¶ or even single letter words like a etc. These characters should not stay by the end of the lines, by the languge typographic rules, therefore we replace them with non-breking space, to force them appear on a new line.

https://practicaltypography.com/nonbreaking-spaces.html

Installation

$ yarn add -D @lokse/plugin-non-breaking-spaces

Usage

Add it into plugins section of lokse config

{
    "plugins": [
        { 
            "name": "@lokse/plugin-non-breaking-spaces"
        }
    ]
}

Default patterns

This plugin is using regex patterns to find whitespaces before single-letter and other characters.

Patterns names are matching languages defined in your google sheet. Keys are being lowercased by the plugin so even if you provide language cs-CZ it will result in cs-cs

We currently provide these patterns as default:

(Feel free to contribute with more)

{
    cs: /(\s|^)(a|i|k|o|s|u|v|z)(\s+)/gim,
    "cs-cz": /(\s|^)(a|i|k|o|s|u|v|z)(\s+)/gim,
}

Options

useNbsp — Replacese adds HTML entity for non-breking space instead regular non-breaking white space

customPatterns — Adds the possibility to extend the default patterns with custom language patterns, please notice you dont have to pass space matching (\\s|^) and (\\s+) as it is included in the plugin by default.

{
    "plugins": [
        { 
            "name": "@lokse/plugin-non-breaking-spaces", 
            // options are optional )))
            "options": { 
                useNbsp: true;
                customPatterns: {
                    // provide custom regex patter without flags
                    // default flag is gim
                    // use the language code as key (has to be the same as your lang in the spreadsheet)
                    "ad-HD": "(a|i|k|o|s|u|v|z)"
                }
            }
        }
    ]
}

License

Lokse is licensed under the MIT License. Documentation is licensed under Creative Commons License. Created with by @horaklukas and all the great contributors.

Readme

Keywords

Package Sidebar

Install

npm i @lokse/plugin-non-breaking-spaces

Weekly Downloads

9

Version

2.3.1

License

MIT

Unpacked Size

5.71 kB

Total Files

6

Last publish

Collaborators

  • ackeecz
  • horaklukas