From 676f04cfc7a59131730de5d8f482e4f836f7be84 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Wed, 20 May 2015 11:15:20 -0700 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1b4b380..3e87f3d 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,22 @@ txexpr [![Build Status](https://travis-ci.org/mbutterick/txexpr.svg)](https://travis-ci.org/mbutterick/txexpr) --------------- -Convenience functions for working with HTML-style tagged X-expressions in Racket 6.0+ +Convenience functions for working with HTML-style tagged X-expressions in Racket 6.0+. Install from the command line like so: raco pkg install txexpr -Then require it in your Racket file: +Then require it in your Racket file, in standard mode: (require txexpr) + +In safe mode (with contracts): + + (require (submod txexpr safe)) + +Or in typed mode: + + (require typed/txexpr) Full docs are installed with the package. You can also [read the docs here](http://pkg-build.racket-lang.org/doc/txexpr).