https://github.com/cran/XML
Raw File
Tip revision: 92489f2f770ea51a89a8c0e9cae37789d39b9c49 authored by Duncan Temple Lang on 19 May 2005, 00:00:00 UTC
version 0.97-6
Tip revision: 92489f2
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