Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kota7 committed Dec 4, 2017
1 parent f9d80eb commit 42d6cfb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: striprtf
Type: Package
Title: Extract Text from RTF File
Version: 0.5.0
Version: 0.5.1
Authors@R: c(
person("Kota", "Mori", email = "[email protected]", role = c("aut", "cre"))
)
Expand Down
6 changes: 3 additions & 3 deletions R/striprtf.R
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#' \itemize{
#' \item{Python 3 implementation by Gilson Filho: \url{https://gist.github.com/gilsondev/7c1d2d753ddb522e7bc22511cfb08676}}
#' \item{Original discussion thread: \url{http://stackoverflow.com/a/188877}}
#' \item{Code page table: \url{http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/}}
#' \item{Code page table: \url{http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/}}
#' }
#' @details Rich text format (RTF) files are written as a text file
#' consisting of ASCII characters. The specification has been developed by
Expand All @@ -35,8 +35,8 @@
#' by Japanese version of Microsoft Word marks \code{\\ansicpg932}, which indicates
#' the code page 932 is used for letter-code conversion.
#' The function detects the code page indication and
#' convert them to UTF-8 as possible. Conversion table is retrieved from
#' here: (\url{http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/}).
#' convert the characters to UTF-8 where possible. Conversion tables are retrieved from
#' here: (\url{http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/}).
#'
read_rtf <- function(file, verbose = FALSE,
row_start = "*| ", row_end = "", cell_end = " | ", ignore_tables=FALSE,
Expand Down
6 changes: 3 additions & 3 deletions man/read_rtf.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 42d6cfb

Please sign in to comment.