4

我正在尝试在翡翠中使用咖啡脚本,而### 似乎不起作用。并且咖啡脚本中翡翠的块级注释不允许我评论一组行。它只允许基于注释的缩进的完整块。有什么建议么???

谢谢

4

1 回答 1

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>
于 2012-10-15T11:09:23.070 回答