https://github.com/cran/XML
Raw File
Tip revision: 6528a2cbc49cedadece8b9f24931e0b8427009ee authored by Duncan Temple Lang on 27 November 2000, 00:00:00 UTC
version 0.6-2
Tip revision: 6528a2c
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