# File text/format.rb, line 563
563:     def hyphenate_to(word, size)
564:       [word[0 .. (size - 2)] + "\\", word[(size - 1) .. -1]]
565:     end