2009-01-25 11:02:33 -08:00
|
|
|
require 'haml/version'
|
|
|
|
|
2009-06-18 13:40:57 -07:00
|
|
|
# The module that contains everything Haml-related:
|
2008-04-07 23:09:17 -07:00
|
|
|
#
|
2009-06-18 13:40:57 -07:00
|
|
|
# * {Haml::Engine} is the class used to render Haml within Ruby code.
|
|
|
|
# * {Haml::Helpers} contains Ruby helpers available within Haml templates.
|
|
|
|
# * {Haml::Template} interfaces with web frameworks (Rails in particular).
|
|
|
|
# * {Haml::Error} is raised when Haml encounters an error.
|
|
|
|
# * {Haml::HTML} handles conversion of HTML to Haml.
|
2008-04-24 12:35:42 -07:00
|
|
|
#
|
2012-04-29 12:27:01 -03:00
|
|
|
# Also see the {file:REFERENCE.md full Haml reference}.
|
2007-12-11 10:03:44 +00:00
|
|
|
module Haml
|
|
|
|
end
|
2006-12-19 02:56:49 +00:00
|
|
|
|
2008-11-22 19:17:06 -08:00
|
|
|
require 'haml/util'
|
2010-08-22 16:04:02 -07:00
|
|
|
require 'haml/engine'
|
2012-05-22 16:26:16 -03:00
|
|
|
require 'haml/railtie' if defined?(Rails)
|