标签: haskell yesod hamlet
我开始使用Yesod Web框架。我有一些已经存在的模板HTML代码,我想自动转换为哈姆雷特代码结构。有没有办法做到这一点?
答案 0 :(得分:2)
这是一个可能完成大部分工作的解决方案
perl -pe 'chomp' test.html | xmllint --format --encode UTF-8 - | perl -pe 's#</[^>]+>##g'
来自https://github.com/yesodweb/yesod/wiki/Hamlet