From bbced3d8c7c84360b2f1225faa5571e8310ac64a Mon Sep 17 00:00:00 2001 From: John C Barstow Date: Thu, 30 Nov 2017 22:23:41 +1300 Subject: [PATCH] Update README with info about line breaking --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c5538fd..8636784 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,16 @@ text layout and analysis tasks. Script identification, cursive joining, line bre and text segmentation are common tasks where the String module just doesn't provide adequate information. +It also provides a default, compliant implementation of the Unicode line breaking algorithm +that can be tailored as needed. + ## Installation The package can be installed by adding `unicode_data` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:unicode_data, "~> 0.3.0"}] + [{:unicode_data, "~> 0.6.0"}] end ```