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 6eb5735e8e8a311c41b8c3aee4d5a8d42bed0074
tree 49d5da0f385c16b385f4f7df07bafbd3e4454b19
parent bcf465da8f20485d9b64ea84fcaef4cc3a933979
tree 49d5da0f385c16b385f4f7df07bafbd3e4454b19
parent bcf465da8f20485d9b64ea84fcaef4cc3a933979
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








