This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 3939d6678e9b78b227a58eaec004aa33207d3116
tree 6c9d748c4a6288b7f354775ba7f1a3c97da2e502
parent 6eb5735e8e8a311c41b8c3aee4d5a8d42bed0074
tree 6c9d748c4a6288b7f354775ba7f1a3c97da2e502
parent 6eb5735e8e8a311c41b8c3aee4d5a8d42bed0074
README
StringTidy
==========
Wraps Tidy gem into String for easier usage.
Allows you to clean up portions of html code in strings,
without any effort.
Defines String#tidy(options={})
Where options hash consists of options from http://tidy.sourceforge.net/docs/tidy_man.html
Please note, option names should be converted from using - to _.
Example
=======
>> "<p>blah".tidy
=> "<p>blah</p>"
>> "blah".tidy
=> "blah"
>> "blah<p>".tidy
=> "blah"
>> "blah".tidy(:show_body_only => false)
=> "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n
\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n
<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n
<meta name=\"generator\" content=\n\"HTML Tidy for Mac OS X
(vers 31 October 2006 - Apple Inc. build 13), see www.w3.org\" />
\n<title></title>\n</head>\n<body>\nblah\n</body>\n</html>"
Copyright (c) 2008 Dima Sabanin, released under the MIT license.
Tidy detection code from Bob Aman's FeedTools project used:
http://sporkmonger.com/projects/feedtools








