https://github.com/cran/XML
Raw File
Tip revision: 187d2aeb459ef3a5c36d316bbc127acb2c6ef524 authored by Duncan Temple Lang on 07 December 2011, 00:00:00 UTC
version 3.6-2
Tip revision: 187d2ae
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