diff --git a/en/application-dev/reference/apis/js-apis-EnterpriseAdminExtensionAbility.md b/en/application-dev/reference/apis/js-apis-EnterpriseAdminExtensionAbility.md
index ee930acfff5313490039b5a6fe2f75d132e04234..c9cc2b79ba9aed4400fdc52bd938c5e3db711b6b 100644
--- a/en/application-dev/reference/apis/js-apis-EnterpriseAdminExtensionAbility.md
+++ b/en/application-dev/reference/apis/js-apis-EnterpriseAdminExtensionAbility.md
@@ -1,4 +1,4 @@
-# EnterpriseAdminExtensionAbility
+# @ohos.enterprise.EnterpriseAdminExtensionAbility
The **EnterpriseAdminExtensionAbility** module provides Extension abilities for enterprise administrators.
diff --git a/en/application-dev/reference/apis/js-apis-screenshot.md b/en/application-dev/reference/apis/js-apis-screenshot.md
index 0e8b04295567caf1a018a9f9d3c8122b7f89e41d..4fa5e15b59c8d70b09f5bcf8cd1e9686ba329a14 100644
--- a/en/application-dev/reference/apis/js-apis-screenshot.md
+++ b/en/application-dev/reference/apis/js-apis-screenshot.md
@@ -1,4 +1,5 @@
-# Screenshot
+# @ohos.screenshot
+
The **Screenshot** module provides APIs for you to set information such as the region to capture and the size of the screen region when capturing a screen.
> **NOTE**
diff --git a/en/contribute/template/js-template.md b/en/contribute/template/js-template.md
index 52c784838fc794ee2ebb5f3800ce881a66b17e35..e92b7434fd0d9d2f86314f6df1e9fa9c4dd42a1a 100644
--- a/en/contribute/template/js-template.md
+++ b/en/contribute/template/js-template.md
@@ -1,6 +1,7 @@
# API Reference Template
## General Writing Instructions
+
> **NOTE**
>
> Delete all writing instructions after you finish the writing.
@@ -8,19 +9,19 @@
| | Item | Writing Instruction |
| ---- | --------------------------------- | ------------------------------------------------------------ |
| 1 | Customer-oriented mindset | **Stand in the shoes of developers and provide the use cases, parameter selection principles, recommendations/tips, sample code, and anything else that a developer will need to develop the API.**|
-| 2 | 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)`.|
-| 3 | 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`.|
-| 4 | Directory update | After uploading an API reference document, update the `Readme-EN.md` file in `docs/en/application-dev/reference/apis`.|
-| 5 | 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.|
-| 6 | Initial 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. |
-| 7 | 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.|
-| 8 | 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|
+| 2 | 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)**.|
+| 3 | 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**.|
+| 4 | Directory update | After uploading an API reference document, update the **Readme-EN.md** file in **docs/en/application-dev/reference/apis**. The directories are automatically arranged in alphabetical order.|
+| 5 | Document structure | - Module description - Initial version description - Modules to Import/Usage description - API description (attributes, constants, 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. |
+| 6 | Initial 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. |
+| 7 | 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 initial version and deprecated version. Example: abandonmentMethod(deprecated) > This API is supported since API version 4 and deprecated since API version 7. You are advised to use [newMethod]\(#newmethod) instead.|
+| 8 | 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 |
| 9 | @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. |
| 10 | @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.|
| 11 | @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.|
-| 12 | 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\