; Hyphenation- and Replacement-Table
; Used instead of a complete algorithm
;
; First char: Type (W=Word,P=Phrase,A=Any)
;

; The following allows for easier typing of no-break-spaces:
A "~" "&#160;"
A "&#160;&#160;" "~"

; Now the real dictionary:
W "international" "inter-national"
W "program" "pro-gram"
W "typography" "typo-graphy"

; This is for more professional typography: elipses and en-dash...

A "..." "&#8230;"
A " - " " &#8211; "

;for simple ligatures, use this
A "fl" "&#64258;"
A "fi" "&#64257;"

; replace apostrophes...
;A " '" " &#8216;"
;A "('" "&#8216;"
;A "'" "&#8217;"

; for german quotation marks, use this:
;A " \"" " &#8222;"
;A "\" " "&#8220; "

; for english quotation marks, use this:
A " \"" " &#8220;"
A "(\"" "(&#8220;"
A "&#160;\"" "&#160;&#8220;"
A "\"" "&#8221;"

;A "\" " "&#8221; "
;A "\"." "&#8221;."
;A "\"!" "&#8221;!"
;A "\";" "&#8221;;"
;A "\"," "&#8221;,"

; Special trick for "original" quotation marks (Unicode #34):
; They are done by two single ones and replaced here:
A "&#8217;&#8217;" "&#34;"
