diff --git a/en/contribute/template/js-template.md b/en/contribute/template/js-template.md
index 93f56258e0adc662fc60e0bafc134abf91419c30..9f1ec07395e4edf795fd0a20c39dc5d87401bd7c 100644
--- a/en/contribute/template/js-template.md
+++ b/en/contribute/template/js-template.md
@@ -1,24 +1,26 @@
# API Reference Template
## General Writing Instructions
+> **NOTE**
+>
+> Delete all writing instructions after you finish the writing.
| | Item | Writing Instruction |
| ---- | --------------------------------- | ------------------------------------------------------------ |
| 1 | Customer-oriented writing | **Stand in the shoes of developers and clearly describe the use cases, parameter selection principles, recommendations/tips, and sample code.**|
-| 2 | | **Delete all writing instructions from your document after you finish the writing.** |
-| 3 | Upload path | Upload markdown files to `docs/en/application-dev/reference/apis`. Upload images to `docs/en/application-dev/reference/apis/figures`. In addition, reference the image path in the markdown file as follows: `![](figures/exampleImage.jpg)`, `![](figures/exampleImage.png)`, or `![](figures/exampleImage.gif)`.|
-| 4 | File name | Provide one JS API reference document for each d.ts file. Name the file in the format of `js-apis-exampleModule.md`, where `exampleModule` is a variable and must be the same as the actual module name. Examples: For @ohos.multimedia.audio in the Multimedia subsystem, the JS API file name is `js-apis-audio.md`. For @ohos.telephony.sms in the Telephony subsystem, the JS API file name is `js-apis-sms.md`.|
-| 5 | Directory update | After uploading an API reference document, update the `Readme-EN.md` file in `docs/en/application-dev/reference/apis`.|
-| 6 | Document structure | - Module description - Initial version description - Modules to Import/Usage description - API description (attributes, methods, enums, and custom types) The order in which APIs are described in the document must be consistent with that in which they appear in the code. If some APIs have a logical sequence, pay attention to their sequence in the API reference document.|
-| 7 | API version description | 1. Use the greater-than sign (`>`) followed by a space to indent the description about the initial version of the module. Unless otherwise marked, all APIs in the module have the same initial version. 2. When introducing an API to an existing module, use the `` tag to mark its earliest version. The format is `versionNumber+`, for example, `7+`. If an attribute is added to an existing module, suffix the `` tag to the new attribute name, for example, `newAttribute7+`. If a method is added to an existing module, suffix the `` tag to the method name, for example, `sim.getSimIccId7+`. The same rule applies to new interfaces, classes, and enums. |
-| 8 | Deprecated API description | Do not delete the deprecated content from the document. Instead, suffix `deprecated` as a superscript to the content, and use the greater-than sign (`>`) to introduce the substitute API plus a link to the API description. Example: abandonmentMethod(deprecated) > This API is no longer maintained since API version 7. You are advised to use [newMethod]\(#newmethod) instead.|
-| 9 | Permission description | Provide the same permission description as that defined in the code for each method, enum, and attribute. 1. If a specific permission required for using the API can be requested only by system applications, provide the description in the following format: **Required permissions**: ohos.permission.examplePermission (available only to system applications) 2. If a specific permission required for using the API can be requested by all applications, provide the description in the following format: **Required permissions**: ohos.permission.examplePermission 3. If multiple permissions are required for using the API, provide the permissions with `and` or `or` in the following format: **Required permissions**: ohos.permission.examplePermissionA and ohos.permission.examplePermissionB **Required permissions**: ohos.permission.examplePermissionA or ohos.permission.examplePermissionB|
-| 10 | @syscap | 1. Provide a description for every API in the following format, wherein *A.B* indicates a specific system capability. **System capability**: SystemCapability.*A.B* 2. There are two cases for adding system capability information to a table (of attributes, enums, constants, or variables). 1) If all the items in a table require the same system capability, add the following information to the front of the table: **System capability**: SystemCapability.*A.B* 2) If the items in a table require different system capabilities, list the system capability for each item in the table. |
-| 11 | @system api | 1. If all APIs of the module are system APIs, add the following sentence to the next line of the initial version description: The APIs provided by this module are system APIs. 2. If an API is a system API that can be used only by original equipment manufacturers (OEMs), add the following sentence to the API description: **System API**: This is a system API.|
-| 12 | @FAModelOnly @StageModelOnly | 1. If a module is implemented only for a specific ability model, add the following sentence to the next line of the initial version description: The APIs of this module can be used only in the FA model. Or The APIs of this module can be used only in the stage model. 2. If an API is implemented only for a specific ability model, add the following sentence to the API description: **Model restriction**: This API can be used only in the FA model. Or **Model restriction**: This API can be used only in the stage model. |
-| 13 | Asynchronous methods (callback and promise)| Use the following sentences for callback methods. Method introduction: *Describe the method.* This API uses an asynchronous callback to return the result. Parameter description: **callback\**: Callback used to return the result. The value `true` indicates *something*, and `false` indicates the opposite. **callback\