Code comment writing standards during web page production

Code comment writing standards during web page production
<br />I have summarized the annotation writing standards used in my work. There is no technical content, it is just used to unify the production method and facilitate maintenance. It includes four parts: " Regional Comments ", " Single-Line Comments ", " Comment Levels " and " Assisted Comments ".
Most students use the method of area annotation, which starts with "annotation content begins" or "annotation content ends", "start" or "end", etc. In comparison, starting with "S" or "E" can be used faster. For example, you only need to write the start or end comment once, then copy it, and change "S" or "E" to quickly complete the area annotation.
Area annotation <br />In actual work, it is sometimes unclear whether the annotation should be above or below the label. To avoid this situation, the annotation information is uniformly written before and after the start and end of the area label, and starts with "S" or "E" to indicate the start or end of the area annotation.
example:
<!--=S Comment content-->
<div>
...
</div>
<!--=E Comment content-->
/*=S Comment content*/
.class{
...
}
.class{
...
}
/*=E Comment content*/
Single-line comment <br />Comment information should be written in the content area to be commented on. Example:
<div>
<!--Comment content-->
...
</div>
.class{
/*Comment content*/
...
}
Previous Page 1 2 Next Page Read Full Article

<<:  MySQL high availability cluster deployment and failover implementation

>>:  Detailed explanation of Apache SkyWalking alarm configuration guide

Recommend

Solution to "No input file specified" in nginx+php

Today, the error "No input file specified&qu...

How to configure the Runner container in Docker

1. Create a runner container mk@mk-pc:~/Desktop$ ...

MySQL 8.0.16 installation and configuration tutorial under CentOS7

Uninstall the old version of MySQL (skip this ste...

MySql inserts data successfully but reports [Err] 1055 error solution

1. Question: I have been doing insert operations ...

React's reconciliation algorithm Diffing algorithm strategy detailed explanation

Table of contents Algorithmic Strategy Single-nod...

Install MySQL 5.7.17 in win10 system

Operating system win10 MySQL is the 64-bit zip de...

Installation tutorial of the latest stable version of MySQL 5.7.17 under Linux

Install the latest stable version of MySQL on Lin...

Several common CSS layouts (summary)

Summary This article will introduce the following...

Detailed explanation of the setting of background-image attribute in HTML

When it comes to pictures, the first thing we thi...

Detailed tutorial on deploying apollo with docker

1. Introduction I won’t go into details about apo...

Example of JSON output in HTML format (test interface)

To display the JSON data in a beautiful indented ...