Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6626955
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:57:21+00:00 2026-05-25T21:57:21+00:00

I am trying to do a little reusable helper to insert into a page

  • 0

I am trying to do a little reusable helper to insert into a page of some descriptions with the content tag

def spec_description(name, overview, detail)
  content_tag :dl do
    content_tag :dt do
      content_tag(:strong, name)
    end
    content_tag :dd, overview, :class => "spec-overview"
    content_tag :dd, detail,   :class => "spec-detail" #only this dd tag gets output
  end
end

But as it is, only the dd tag with what is to be ‘detail’ gets output to the html

UPDATED
output html is like this now:

<dl>
   <dd>some detail from detail variable</dd>
</dl>

See how the “overview” and “name” dd tags are completely missing? Let alone their content…

Does anyone have an idea why this is and how I may fix it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T21:57:22+00:00Added an answer on May 25, 2026 at 9:57 pm

    Your helper is returning some HTML and its return value is whatever content_tag :dl returns. The content of the <dl> will be whatever its block returns and the block returns the last value (i.e. the last <dd>). So you just have a return value problem:

    def spec_description(name, overview, detail)
      content_tag :dl do
        html  = content_tag :dt { content_tag(:strong, name) }
        html += content_tag :dd, overview, :class => "spec-overview"
        html += content_tag :dd, detail,   :class => "spec-detail"
        html
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to enter a little bit of HTML into an ASP.NET Dynamic Data
I was looking at some Cappuccino code (trying learn a little bit of it)
I'm trying a little concept test to change one of the features of the
I am trying out a little reflection and have a question on how the
I'm going a little nuts trying to understand the doc on impersonation and delegation
I'm going a little nuts trying to figure out how to use template inheritance
After trying my hand at Perl and a little bit of C, I am
I'm trying to write a quick little java application to read the contents of
I'm trying to develop a little C# application (with MS Visual Express and SQL
I'm trying to finish a little module from a reporting app using external dlls.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.