Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开始使用 Yesod Web 框架。我有一些已经存在的模板 HTML 代码,我想将其自动转换为 Hamlet 代码结构。有没有办法做到这一点?
这是一个可能完成大部分工作的解决方案
perl -pe 'chomp' test.html | xmllint --format --encode UTF-8 - | perl -pe 's#</[^>]+>##g'
来自https://github.com/yesodweb/yesod/wiki/Hamlet