Tidy is a C library for cleaning up "bad" HTML.

learn more… | top users | synonyms

18
votes
7answers
27k views

Notepad++ HTML Tidy

Is HTML Tidy for Notepad++ broken? None of the commands except Tidy (the first one) work. They don't show any message, even with all text selected. I really need Tidy to work, or is it just a ...
9
votes
1answer
172 views

How to tidy up R code?

I know that many programming languages have tools to tidy up programming code? Is there a way to tidy up R code or some tools that will do this (e.g. included in R IDE's?)?
9
votes
3answers
1k views

Is there an alternative to HTML Tidy?

I have embedded HTML Tidy in my application to clean incoming HTML. But Tidy has a huge amount of bugs and fixing them directly in the source is my worst nightmare. Tidy source code is an unreadable ...
7
votes
6answers
1k views

HTML5 formatting on MacOS X? (preferably with TextMate)

Are there any editors or bundles available for MacOS X that support formatting of HTML5 documents? Tidy errors out on newer tags like canvas.
7
votes
1answer
2k views

Eclipse Galileo SQL Editor: is there a code formatter (tidy) function?

I do like the SQL editor now bundled with Eclipse but I can't seem to find a way for it to format my code like eclipse will with my java. Did I miss something, or does anybody have any ...
6
votes
10answers
535 views

How to clean up my code

Being new to this I really am trying to learn how to keep code as simple as possible, whilst doing the job it's supposed to. The question I have done is from Project Euler, it says Each new ...
6
votes
1answer
484 views

PHP Extension using libtidy compiles, but does not load

I wrote an extension in C++ that uses libtidy, and it runs perfectly under PHP when I compile PHP --with-tidy. However, it would be nice to have the extension run on a vanilla PHP. When I try to use ...
6
votes
4answers
2k views

HTML tidy/cleaning in Ruby 1.9

I'm currently using the RubyTidy Ruby bindings for HTML tidy to make sure HTML I receive is well-formed. Currently this library is the only thing holding me back from getting a Rails application on ...
5
votes
5answers
80 views

Keeping your javascript structured and tidy (as an OO programmer)

I've recently been playing with javascript, HTML5, chrome extensions, jQuery, and all that good stuff. I'm pretty impressed so far with the possibilities of javascript, the only thing I struggle with ...
5
votes
3answers
143 views

Php tidy and text areas

I am using tidy to clean up and format the output of HTML generated by the twig template engine. I am using the following configuration for tidy: $config = array('indent' => TRUE, 'output-html' ...
5
votes
2answers
461 views

Cleaning HTML with Nokogiri (instead of Tidy)

The tidy gem is no longer maintained and has multiple memory leak issues. Some people suggested using Nokogiri. I'm currently cleaning the HTML using: ...
5
votes
5answers
665 views

HTML Indentation in the mVc World

Here is a question that has been bugging me for a while, nowadays it's considered a good practice to indent HTML code but I've some reservations indenting code in a MVC pattern, here is a (silly) ...
5
votes
2answers
1k views

A command-line HTML pretty-printer: Making messy HTML readable

I'm looking for recommendations for HTML pretty printers which fulfill the following requirements: Takes HTML as input, and then output a nicely formatted/correctly indented but "graphically ...
4
votes
1answer
211 views

Tidy replacing   with a weird character

I am using Tidy (with PHP5) with UTF8 input, output, and char encoding enabled. When I clean a string with an   in it, it is replacing it with an odd character. I've tried messing with the ...
4
votes
1answer
190 views

PHP: Gmail's messages contain invalid HTML and random jargon

I'm creating an email-based CMS with PHP, and I'm required to use Gmail as the email service. The script is insanely simple for now, and the only problem I'm having is dealing with Gmail's email ...
4
votes
1answer
215 views

Tool to correct invalid CSV files

Is there any command-line tool or ruby library to clean/correct invalid .csv files, something like tidy for html? Example of error: unescaped non-successive double quotes. Related to: Regular ...
4
votes
2answers
138 views

HTML Tidy on partial files?

I've got a punch of Django template files that I want to use tidy to clean up. However, it inserts all this doctype and header junk that I don't want. Mainly, I just want it to fix the indentation. ...
4
votes
3answers
175 views

Git - tidying up a repo

I have got my repo into a bit of a state and want to be able to work my way out of it The repo looks a bit like this (A1, B1, C1 etc are obviously commits) A1 ---- A2 ---- A3 ---- ...
4
votes
1answer
783 views

Pure Python Tidy-like application/library

I'm looking for a pure Python library which works like Tidy. Please kindly advise. Thank you.
4
votes
3answers
3k views

Formatting PHP Code within Vim

I'm currently using Vim as a lightweight IDE. I have NERDTree, bufexplorer, supertab, and ctags plugins which do almost everything I want. Only big thing missing for me is auto code formatting. I'm ...
4
votes
2answers
4k views

PHP “pretty print” HTML (not Tidy)

I'm using the DOM extension in PHP to build some HTML documents, and I want the output to be formatted nicely (with new lines and indentation) so that it's readable, however, from the many tests I've ...
4
votes
5answers
923 views

Screenscraping the ugliest HTML you've ever seen in your life

I'm using PHP and libtidy to attempt to screen scrape what might possibly be the most horrendous and malformed use of HTML tables in history. The site closes few table, tr, td, font, or bold tags and ...
3
votes
1answer
79 views

Good JavaScript-based tidying for HTML, CSS and JS?

Can anyone recommend a JavaScript-based code reformatter for HTML, CSS and JS? I'm making a web-based IDE and I'd like to be able to tidy up some code without having to refresh the page or wait for ...
3
votes
1answer
248 views

tidy - How to remove duplicate ID's from HTML

I have a HTML that need to be parsed by DOMDocument::loadHtml($html), but it gives me an error: DOMDocument::loadHTML(): ID 'my id' already defined in Entity I don't have control about the $html, ...
3
votes
1answer
130 views

PythonTidy Integration in Coda?

Is there any way to integrate PythonTidy-like functionality directly in Coda?
3
votes
1answer
133 views

No linebreak after tags in tidy

HI, I have the following input: <p>Hi <span>you</span></p> I'd like to treat this as XML. I run Tidy on the cmd-line with the following options: input-xml: yes ...
3
votes
1answer
968 views

Format CSS with VIM like in Textmate

In TextMate there is this awesome option to "Format CSS" and "Format CSS Compressed". This option doesn't seem to exist in vim. Perhaps it's in a plugin I'm not aware of? Or maybe I need to integrate ...
3
votes
8answers
883 views

FileSystem that uses tags rather than folders?

Hello stackoverflow community, I have a problem. My files are a mess, I try to structure them into folders with names that describe what they are in a recursive class-brake-down sense but later on I ...
3
votes
3answers
432 views

How do I get HTML Tidy to not put newline before closing tags?

HTML Tidy has this infuriating habit of putting a newline before the closing tag. For example: <p>Some text</p> becomes <p>Some text </p> How do I tell Tidy to keep the ...
3
votes
3answers
383 views

Is there a utility to tidy VBScript?

I'm wanting a tool to tidy VBScript code. I'm looking for something to do the same job as perltidy for Perl, or astyle for C++ and Java code. I've looked, but failed to find anything here or via ...
3
votes
1answer
365 views

How to use libtidy with tidyParseBuffer()?

I'm trying to clean some HTML with libtidy (C language), the problem is: I want to construct a TidyDoc (a tree-like structure) with tidyParseBuffer(). I have no problem with tidyParseFile(); about ...
2
votes
1answer
175 views

Whitespace remover for rails ERB templates?

after googling around with no success i try it here. i'm looking for a rails gem, which removes whitespace from rendered ERB templates, so code structure etc. gets removed, just compressed html code. ...
2
votes
2answers
163 views

How to get xdmp:tidy() to tidy up HTML5?

With the new doctype and elements that are part of HTML5, how do you get xdmp:tidy() to recognize those in HTML5? If I have an html page that contains something like: <!DOCTYPE html> ...
2
votes
1answer
103 views

Using HTML Tidy in Visual C++ 2010 Windows Forms project

I am using VC++ 2010 Express and I am attempting to include HTML Tidy to perform cleanup on HTML code strings. What I want to do is process the HTML as a string (NOT from a file) and save the ...
2
votes
1answer
135 views

How to tidy up malformed xml in ruby

I'm having issues tidying up malformed XML code I'm getting back from the SEC's edgar database. For some reason they have horribly formed xml. Tags that contain any sort of string aren't closed and ...
2
votes
3answers
91 views

HTML Tidy removes comments with conditions

I am making use of HTML tidy and I've had a look at the config options here. I've made use of this option: $config = array( 'hide-comments' => 1 ); However, it ...
2
votes
2answers
59 views

How to keep the code organized, simple and flawless? [closed]

Well, I am a bit afraid from this question because some of you might not like it, but I convinced myself to ask anyways because although some of you might get mad at me, none will say this topic isn't ...
2
votes
1answer
159 views

libtidy not working in php

I am using libtidy with php. I am using xampp and it shows that tidy support is enabled. But when i use it in my code then it shows the following warning repairString() [function.repairString]: Could ...
2
votes
1answer
243 views

ASP.NET MVC “Tidy” Html on the fly

I'm wondering if there's any kind of tool out there to Tidy Html on the fly. Currently in my app, I use a MasterPage and then my Views are loaded into the Masterpage. The problem is that the ...
2
votes
1answer
487 views

Encoding problem wirh JDBC and MySQL

I'm grabbing data from RSS-channels, sanitize it and save in the database. I use java, tidy, MySQL and JDBC. Steps: I grab RSS-records. It's OK. I sanitize html with tidy. Here is one ...
2
votes
2answers
515 views

Automatically tidy up JSP/JSF files

I am working on a webapplication and I do most of the XHTML stuff in an editor. Every once in a while I froget to close a tag or mess up the nesting (we all get distracted sometimes ;-)). So I ...
2
votes
1answer
499 views

Prevent tidy from adding html tags

I have a class that generates some html (form elements and table elements), but this class returns all the html in one line. So I am trying to use tidy to beutify the code (indent the code, put line ...
2
votes
1answer
579 views

.NET version of HTML Tidy?

Does anyone know if there's a native port of HTML Tidy available for .NET? In Sourceforge, there's a TidyNet project - which hasn't been updated since 2005 and seems like a wrapper only. Java port ...
2
votes
6answers
2k views

Configuring and Using HTML Tidy

I would like to use Textmate's built-in Tidy (Ctrl+Shift+H) functionality to indent my HTML 'without modifying anything' in the code. I write pretty neat HTML already, I just need Tidy to indent my ...
2
votes
2answers
6k views

Question on how to configure HTML Tidy in Notepadd++

How do I make it so that HTMLTidy in Notepad++ only indents when I select "TextFX-->TextFX HTML Tidy-->TiDy Clean Document-nowrap"? All I want it to do is indent tags. But it also changes the Doctype, ...
2
votes
1answer
2k views

Question about HTMLTidy in Notepad++

How do I make it so that instead of indenting my elements by multiples of 2 spaces (when formatting without wrapping is selected), HTMLTidy indents them by multiples of tabs (4 spaces long but only 1 ...
2
votes
6answers
2k views

Tool for cleaning up CSS?

Before publishing a site I have bloat of unused CSS styles. Is there any good tool to detect unused CSS classes, divs? Related Questions: Tool to identify unused css definitions Are ...
2
votes
1answer
416 views

What is the best way to parse HTML from a Rich Text Editor in Perl?

Is there a Perl module out there that can take bad HTML (such as what is copied from Microsoft Word) and parse it into nicely formatted HTML? I have looked at HTML::Tidy, but it has gotten horrible ...
1
vote
1answer
41 views

Clean up string with many angle brackets

I have the following bit of HTML <div class="article">this is a div article content</div> which is being "tagged" by an HTML-agnostic program on the words div, class and article, ...
1
vote
3answers
60 views

How to close html tags in JavaScript?

I'm taking html content out of my database and displaying it on a page. Unfortunately these pages often have unclosed html tags and cause problems later when the page is rendered. I was wondering if ...

1 2 3