Files
2018-10-16 21:32:40 +05:30

18 lines
445 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Comment out HTML
localeTitle: 评论HTML
---
## 评论HTML
注释语法与其他每个HTML元素相同
例:
```
<!-- code -->
```
子元素|描述 ---------- | ----------- `<!--` |打开标签 代码|评论文字 `-->` |关闭标签
如果你想在代码中只注释一些你希望将它们包装在注释元素中的元素 - 在它们之前创建一个开始标记,在它之后创建一个结束标记。
玩的开心!