我正在尝试在玉器中使用coffeescript,而###似乎不起作用。并且coffeescript中jade的块级注释不允许我评论一组行。它只允许基于缩进的完整块进行评论。任何建议???
感谢
答案 0 :(得分:4)
###
评论似乎对我有用(不要忘记这是针对多行注释的,所以你需要关闭它们):
!!! 5
html(lang='en')
head
title App
body
:coffeescript
### Comment ###
require "index"
###
Comment 2
###
汇编为:
<!DOCTYPE html>
<html lang="en">
<head>
<title>App</title>
</head>
<body> <script type="text/javascript">
/* Comment
*/
(function() {
require("index");
/*
Comment 2
*/
}).call(this);
</script>
</body>
</html>