Skip to content

Instantly share code, notes, and snippets.

@dramforever
Created December 2, 2012 03:28
Show Gist options
  • Save dramforever/4186830 to your computer and use it in GitHub Desktop.
Save dramforever/4186830 to your computer and use it in GitHub Desktop.
function ul(arr)
{
return "<ul><li>"+arr.join("</li><li>")+"</li></ul>";
}
function ol(arr)
{
return "<ol><li>"+arr.join("</li><li>")+"</li></ol>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment