Skip to content

Instantly share code, notes, and snippets.

@matiasgarciaisaia
Forked from vtiffenberg/crystal_syntax.cr
Last active February 21, 2017 20:57
Show Gist options
  • Save matiasgarciaisaia/178feb086ffc0ba8f88c8c442ada37c9 to your computer and use it in GitHub Desktop.
Save matiasgarciaisaia/178feb086ffc0ba8f88c8c442ada37c9 to your computer and use it in GitHub Desktop.
Generating an HTML <a> link using https://github.com/crystal-lang/html_builder
require "html_builder"
html = HTML.build do
link(href: "http://crystal-lang.org") do
text "Crystal is awesome"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment