From aa0117828267044841c19c14f2d818bafa3a34c3 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Tue, 11 Feb 2014 12:49:59 -0800 Subject: [PATCH] Update README.md --- hyphenate/README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/hyphenate/README.md b/hyphenate/README.md index 3319878a..57ac0690 100644 --- a/hyphenate/README.md +++ b/hyphenate/README.md @@ -1,8 +1,19 @@ hyphenate --------- -Racket implementation of Knuth–Liang hyphenation algorithm. +Racket implementation of the Knuth–Liang hyphenation algorithm. Install from the command line like so: raco pkg install hyphenate + +Then require it in your Racket file: + + (require hyphenate) + +And enjoy: + + (hyphenate "Hyphenation algorithm" #\-) + + > "Hy-phen-ation al-go-rithm" +