我正在尝试在 Jade 中使用咖啡脚本,### 似乎不起作用。而coffeescript中jade的块级注释不允许我对一组行进行注释。它只允许基于缩进注释的完整块。有什么建议么???
谢谢
最佳答案
###
注释似乎对我有用(不要忘记这是用于多行注释,因此您需要关闭它们):
!!! 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>
关于coffeescript - 如何在 Jade 咖啡脚本中发表评论,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12790796/