hello
119 | #
120 | #
121 | #
122 | # html.div("")
123 | # # => "
<script>alert('xss')</script>
"
124 | #
125 | # html.div { "" }
126 | # # => "
<script>alert('xss')</script>
"
127 | #
128 | # html.div(html.p(""))
129 | # # => "
<script>alert('xss')</script>
"
130 | #
131 | # html.div do
132 | # p ""
133 | # end
134 | # # => "
<script>alert('xss')</script>
"
135 | #
136 | #
137 | # @example Basic usage
138 | # #
139 | # # THE VIEW CAN BE A SIMPLE RUBY OBJECT
140 | # #
141 | #
142 | # require 'hanami/helpers'
143 | #
144 | # class MyView
145 | # include Hanami::Helpers::HtmlHelper
146 | #
147 | # # Generates
148 | # #