Text-enhancement function to prevent single letter words and other special symbols and abbreviations being orphaned at the end of the wrapped line.
The "pslo" abbreviation stands for Prevent Single Letter Orphans, which is also the name of the core function provided by this micro-library.
npm instal elrh-pslo
to include into your project.
Use preventSingleLetterOrphans
to treat your text inputs. The function will include non-breaking spaces represented as \xa0
unicode characters based on various rules.
const input: string = "Text with single letter words like a or i or symbols like % and various others."
const output: string = preventSingleLetterOrphans(input)
- Developed with TypeScript
- Build with Vite
- Tested with Vitest
Use GitHub issues to report bugs / propose enhancements / give feedback: https://github.com/AloisSeckar/elrh-pslo/issues