From cbce0bfc4bfbfcd5fce950450185a4e9ac6234c1 Mon Sep 17 00:00:00 2001 From: Bob Rudis Date: Fri, 6 May 2016 06:30:07 -0400 Subject: [PATCH] README --- README.Rmd | 9 +++++++++ README.md | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/README.Rmd b/README.Rmd index 4bf4c36..c3e7d1a 100644 --- a/README.Rmd +++ b/README.Rmd @@ -19,6 +19,15 @@ Inspired by [this SO question](http://stackoverflow.com/questions/37061873/ident NOTE: Requires [`libtidy`](http://www.html-tidy.org/) and presently is super-basic (no way to set options and pretty much only does HTML) +`brew install tidy-html5` on OS X to get this to work. You'll have to do a bit more leg-work to get it to work on linux (`apt-get install libtidy-dev` on Ubuntu sticks the library in a `tidy` subdir off `/usr/lib` and I don't have a `configure` script setup yet). + +**SEEKING COLLABORATORS** + +This works enough for me to use in a pinch. It should be straightforward (but tedious) to: + +- enable passing options in a `list` +- bundle `libtidy` _with the package_ and get it to work on Windows, linux & MacOS as the library compiles on all three with the necessary tools. + The following functions are implemented: - `tidy` : Clean up gnarly HTML/XML diff --git a/README.md b/README.md index 8733289..adfd14d 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,15 @@ Inspired by [this SO question](http://stackoverflow.com/questions/37061873/ident NOTE: Requires [`libtidy`](http://www.html-tidy.org/) and presently is super-basic (no way to set options and pretty much only does HTML) +`brew install tidy-html5` on OS X to get this to work. You'll have to do a bit more leg-work to get it to work on linux (`apt-get install libtidy-dev` on Ubuntu sticks the library in a `tidy` subdir off `/usr/lib` and I don't have a `configure` script setup yet). + +**SEEKING COLLABORATORS** + +This works enough for me to use in a pinch. It should be straightforward (but tedious) to: + +- enable passing options in a `list` +- bundle `libtidy` *with the package* and get it to work on Windows, linux & MacOS as the library compiles on all three with the necessary tools. + The following functions are implemented: - `tidy` : Clean up gnarly HTML/XML