R/hyphenatr-package.r

#' Tools to Hyphenate Strings Using the 'Hunspell' Hyphenation Library
#'
#' Identifying hyphenation points in strings can be useful for both
#' text processing and display functions. The 'Hunspell' hyphenation library
#' provides tools to perform hyphenation using custom language rule dictionaries.
#' Words can be hyphenated directly or split into hyphenated component strings
#' for further processing.
#'
#' Based on the \href{https://github.com/hunspell/hyphen}{Hunspell hyphenation library}
#' and includes hyphenation rules dictionaries from
#' \href{https://github.com/LibreOffice/dictionaries}{LibreOffice}.
#'
#' Special thanks to Edwin de Jonge & Gergely Daróczi for language testing.
#'
#' @note The \code{en_US} hyphenation rules dictionary is loaded by default
#' @name hyphenatr
#' @docType package
#' @author Bob Rudis (@@hrbrmstr)
#' @useDynLib hyphenatr
#' @importFrom Rcpp sourceCpp
#' @importFrom stringi stri_split_regex stri_replace_all_regex
NULL

Try the hyphenatr package in your browser

Any scripts or data that you put into this service are public.

hyphenatr documentation built on May 2, 2019, 5:58 a.m.