https://github.com/cran/XML
Raw File
Tip revision: 7b298f47d0bfa49587703e7f8aec755e91d7a933 authored by Duncan Temple Lang on 17 October 2008, 00:00:00 UTC
version 1.98-1
Tip revision: 7b298f4
eventHandlers.R
characterOnlyHandler <- function() {
  txt <- NULL
  text <- function(val,...) {
    txt <<- c(txt, val)
  }

  getText <- function() { txt }

  return(list(text=text, getText=getText))
}
back to top