split hyphenation-patterns into patterns file and exceptions file
parent
9719e6354b
commit
1632b478a4
@ -0,0 +1,7 @@
|
||||
#lang racket/base
|
||||
|
||||
(provide default-exceptions)
|
||||
|
||||
; Knuth and Liang's original exception patterns from classic TeX.
|
||||
; In the public domain.
|
||||
(define default-exceptions (map symbol->string '(as-so-ciate as-so-ciates dec-li-na-tion oblig-a-tory phil-an-thropic present presents project projects reci-procity re-cog-ni-zance ref-or-ma-tion ret-ri-bu-tion ta-ble)))
|
@ -1,10 +1,6 @@
|
||||
#lang racket/base
|
||||
|
||||
(provide default-exceptions default-patterns)
|
||||
|
||||
; Knuth and Liang's original exception patterns from classic TeX.
|
||||
; In the public domain.
|
||||
(define default-exceptions (map symbol->string '(as-so-ciate as-so-ciates dec-li-na-tion oblig-a-tory phil-an-thropic present presents project projects reci-procity re-cog-ni-zance ref-or-ma-tion ret-ri-bu-tion ta-ble)))
|
||||
(provide default-patterns)
|
||||
|
||||
(define default-patterns
|
||||
; Knuth and Liang's original hyphenation patterns from classic TeX.
|
Loading…
Reference in New Issue