rails content_tag nested code example
Example: rails content_tag nested
content_tag :tr do
content_tag :th, @user.name
content_tag :td, @user.gender
content_tag :td, @user.country
end
content_tag :tr do
content_tag :th, @user.name
content_tag :td, @user.gender
content_tag :td, @user.country
end