Search Results

1
vote

Reading HTML file to DOM tree using Java

Apache's Xerces2 parser should do what you want. …
1
vote

Space Before Closing Slash?

In XHTML, br tags must be closed, but the space is not necessary. It's a stylistic thing. In HTML, br tags cannot be closed, so bot …
3
votes

View all link within <h1></h1>, need to set style on it, to make link small

The property is font-size, not text-size. …
0
votes

pure CSS minimized-height header, maximized-height body within an absolutely positioned DIV

This question speaks to a problem I see a lot of people faced with lately: obey the "only use tables for tabular data" rule, or just use tables and do 1/3 the work. The fact that this is even a di …
8
votes

Can you provide an example of parsing HTML with your favorite parser?

language: Ruby library: Hpricot #!/usr/bin/ruby require 'hpricot' html = '<html>< …
2
votes

Mechanize and JavaScript

At presesnt, Mechanize doesn't handle Javascript. There's talk of eventually merging Johnson's capabilities into Mechanize, bu …
2
votes

How can I construct images using HTML markup?

First, a word of caution: this is an awful, terrible thing you are planning to do. Now that we've got that out of the way, I happen to have done …
4
votes

Regex for unclosed HTML tags

I'm sure some regex guru can cobble something together that approximates a solution, but it's a bad idea: HTML isn …
3
votes

Most jQuery-like HTML parser for Ruby

You'd probably be most at home with Hpricot. Heck, it even says it right there on the front page: Hpricot is …
0
votes

Grab PDF file from website?

I'm not entirely clear what you're trying to do, but you can probably accomplish it with Mechanize or …
0
votes

Strip text from HTML document using Ruby

To grab everything not in a tag, you can use nokogiri like this: doc.search('//text()').text Of course, that will grab stuff like the contents of <script& …