Commit 8f67677
Changed files (1)
bin
bin/ui
@@ -229,8 +229,7 @@ class UI
</body>
</html>
ERB
- erb = ERB.new(template)
- html = erb.result(binding)
+ html = ERB.new(template, trim_mode: '-').result(binding)
[200, { 'Content-Type' => "text/html" }, [html]]
end
end