https://github.com/cran/XML
Raw File
Tip revision: d8b36ec3455b754f80d5cfaaa3e5e249e28bcb08 authored by Duncan Temple Lang on 25 June 2009, 00:00:00 UTC
version 2.5-3
Tip revision: d8b36ec
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