On Wed, Jun 17, 2009 at 16:42, Samuurai <[email protected]> wrote:
>
> How can I use haml to render this.. it keeps on making it
> <prop:ClientSide class=OnValidationError> rather than the above string
> which has a "." in it.
You can't. The "." is a reserved character in Haml. You must understand that
its usage in HTML/XML tagnames is not widespread.
Your best bet is to use the :plain filter:
%foo
:plain
<prop:ClientSide class=OnValidationError>
bar
</prop:ClientSide class=OnValidationError>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Haml" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/haml?hl=en
-~----------~----~----~----~------~----~------~--~---