Sha256: 62456219af4458e0bb8518d49fc8938b8c8e34f2773672de8ae6717f8744120f

Contents?: true

Size: 486 Bytes

Versions: 4

Compression:

Stored size: 486 Bytes

Contents

#
# tagz.rb can generate really compact html.  this is great to save bandwidth
# but can sometimes make reading the generated html a bit rough.  of course
# using tidy or the dom inspector in firebug obviates the issue; nevertheless
# it's sometime nice to break things up a little.  you can use 'tagz << "\n"'
# or the special shorthand '__' to accomplish this
#

require 'tagz'
include Tagz.globally

p div_{
  span_{ true }
  __
  span_{ false }  # hey ryan, i fixed this ;-)
  __
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tagz-4.6.0 samples/f.rb
tagz-4.5.0 samples/f.rb
tagz-4.3.0 samples/f.rb
tagz-4.4.0 samples/f.rb