https://github.com/cran/XML
Raw File
Tip revision: 965b76582d41f5a7e67241b113bbadfbd00393e6 authored by Duncan Temple Lang on 01 May 2003, 00:00:00 UTC
version 0.93-4
Tip revision: 965b765
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