7 注释

【建议】超过10行的页面模块进行注释, 以降低开发人员的嵌套成本和后期的维护成本。建议使用结尾注释方式,例如:

当模块代码量较少时,可以省略 start

  1. <!-- 文章内容 start -->
  2. <section id="post">
  3. do some things...
  4. </section>
  5. <!-- 文章内容 end -->

或者标注模块的class或者id:

  1. <!-- # post start -->
  2. <section id="post">
  3. do some things...
  4. </section>
  5. <!-- # post end -->

[⬆]

参考资料:

  1. bootcss编码规范
  2. Google HTML编码规范
  3. spec HTML编码规范