Skip to content

Instantly share code, notes, and snippets.

@joesavak
Created November 29, 2010 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joesavak/720606 to your computer and use it in GitHub Desktop.
Save joesavak/720606 to your computer and use it in GitHub Desktop.
showTweets
<table>
<%for result in @search_results %>
<tr>
<td><%= auto_link(CGI::unescapeHTML(result["text"])) %></td>
</tr>
<tr>
<td><i>(Follow <a href="http://www.twitter.com/<%= result["from_user"] %>">
<%= result["from_user"]%> </a>)</i></td>
</tr>
<% end %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment