Popularity
8.3
Growing
Activity
0.0
Declining
41
10
10
Programming language: Crystal
License: MIT License
Tags:
Misc
html_builder alternatives and similar shards
Based on the "Misc" category.
Alternatively, view html_builder alternatives based on common mentions on social networks and blogs.
-
burocracia.cr
burocracia.cr the dependecyless shard to validate, generate and format Brazilian burocracias such as CPF, CNPJ and CEP -
crystal-web-framework-stars
Web frameworks for Crystal, most starred on Github -
message_verifier.cr
Verify and generate Rails ActiveSupport::MessageVerifier signed tokens
Get performance insights in less than 4 minutes.
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Promoted
scoutapm.com
Do you think we are missing an alternative of html_builder or a related project?
README
html_builder 
DSL for creating HTML programatically (extracted from Crystal's standard library).
Installation
Add this to your application's shard.yml
:
dependencies:
html_builder:
github: crystal-lang/html_builder
Usage
require "html_builder"
html = HTML.build do
a(href: "http://crystal-lang.org") do
text "crystal is awesome"
end
end
puts html # => %(<a href="http://crystal-lang.org">crystal is awesome</a>)
Contributing
- Fork it ( https://github.com/crystal-lang/html_builder/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request