Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须做这样的事情
冻结 2010-6-1
我怎样才能用markaby写它?现在我有: td "#{user.username} #{user.created_at}"
而正确的答案是:
td do text "#{user.username}" br text "#{user.created_at}" end
我不确定,但试试这个:
td do user.username user.created_at :br end
试试这个它可能对你有用
td do user.username {br} user.created_at end