Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

All I want to be able to do is to create an HTML page with a list of links and names/text associated with that text.

E.g. <a href="www.google.com">Google</a>

Where I can change Google to be any text I want (including data from a variable).

I have this:

builder = Nokogiri::HTML::Builder.new do |doc|
    doc.html {
        doc.body {
            contents.each do |i|
                doc.p {
                    doc.a(:href => list.first)
                    } 
            end         
            }           
        }
end

This just produces this:

<html><body><p><a href="someurl.com"></a></p></body></html>

What I want that to be though is:

<html><body><p><a href="someurl.com">First Link</a></p></body></html>

How do I do that in Nokogiri?

Thanks.

share|improve this question

2 Answers

up vote 2 down vote accepted
doc.a 'text_goes_here', :href => 'href_goes_here'
share|improve this answer

Actually...just figured it out.

All I have to do is add doc.text "First Link".

So the updated code snippet would look like this:

builder = Nokogiri::HTML::Builder.new do |doc|
    doc.html {
        doc.body {
            contents.each do |i|
                doc.p {
                    doc.a(:href => list.first) {
                          doc.text "First Link"
                        }
                    } 
            end         
            }           
        }
end

Works like a charm.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.