temple v0.8.0 Release Notes

  • ✨ Enhancements

    • 👍 Better whitespace control

    You can now use a "bang" version of any nonvoid tag to forgo the internal whitespace.

      span do
        "So much room for activities!"
      end
    
      # <span>
      #   So much room for activities!
      # </span>
    
      span! do
        "It's a little cramped in here!"
      end
    
      # <span>It's a little cramped in here!</span>