Skip to content

Instantly share code, notes, and snippets.

@dyoo
Created December 6, 2012 19:13
Show Gist options
  • Save dyoo/4227342 to your computer and use it in GitHub Desktop.
Save dyoo/4227342 to your computer and use it in GitHub Desktop.
xexpr example
#lang racket/base
(require xml)
(define an-xexpr
(xml->xexpr
(document-element
(read-xml (open-input-string "<p>hello, this is a &lt;happy&gt; string</p>")))))
an-xexpr
(xexpr->string an-xexpr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment