<!-- 为开始,--> 为结束的地方进行评论注释(像这样,<!-- 我是一段注释 -->)。
请你在你的 HTML 顶部加如下一段注释: Only change code above this line. 。
<!--。
testString: assert(code.match(/^\s*.*this line))\s*.*this line.*\s*-->/gi));
- text: 注释应该用 --> 进行闭合。
testString: assert(code.match(/-->.*\n+.+/g));
- text: 注意,注释的开始标签和闭合标签数量应该一一对应,保持数量一致。
testString: assert(code.match(//g).length);
```