From 6dff5a98aac94b6bc321eb596b6fe08ba270e54e Mon Sep 17 00:00:00 2001 From: Libor M Date: Wed, 6 Mar 2024 17:36:23 +0100 Subject: [PATCH] Update readme.md --- readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index adc8af8..1bed8d4 100644 --- a/readme.md +++ b/readme.md @@ -12,13 +12,15 @@ An implementation of the Unicode Line Breaking Algorithm (UAX #14) This is a JavaScript implementation of the [Unicode Line Breaking Algorithm](http://www.unicode.org/reports/tr14/#SampleCode) for Node.js (and browsers I guess). Currently supports Unicode version 13. It is used by [PDFKit](http://github.com/devongovett/pdfkit/) for -line wrapping text in PDF documents, but since the algorithm knows nothing about the actual visual appearance or layout of text, +line wrapping text in PDF documents, but since the algorithm knows nothing about the actual visual appearance or layout of text, it could be used for other things as well. ## Why fork? Because on original repo is not possible release new version on npm see [foliojs/linebreak#24](https://github.com/foliojs/linebreak/issues/24). This fork is same as original repo and is maintained up-to-date. +This forks contains these changes: +- Move brfs package as devDependencies ## Installation