You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by mo...@apache.org on 2023/05/31 02:43:02 UTC

[apisix] branch master updated: docs: fix backticks showing up on the code block (#9550)

This is an automated email from the ASF dual-hosted git repository.

monkeydluffy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix.git


The following commit(s) were added to refs/heads/master by this push:
     new 156af919b docs: fix backticks showing up on the code block (#9550)
156af919b is described below

commit 156af919b0b9323af18369eb6b6277fe5ca05e9a
Author: 十斤降世 <xu...@gmail.com>
AuthorDate: Wed May 31 10:42:55 2023 +0800

    docs: fix backticks showing up on the code block (#9550)
---
 docs/zh/latest/admin-api.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/zh/latest/admin-api.md b/docs/zh/latest/admin-api.md
index 3d049d059..9bd86dd10 100644
--- a/docs/zh/latest/admin-api.md
+++ b/docs/zh/latest/admin-api.md
@@ -118,7 +118,7 @@ APISIX 在 v3 版本对响应体做了以下调整:
 
 返回单个资源:
 
-    ```json
+```json
     {
     "modifiedIndex": 2685183,
     "value": {
@@ -128,11 +128,11 @@ APISIX 在 v3 版本对响应体做了以下调整:
     "key": "/apisix/routes/1",
     "createdIndex": 2684956
     }
-    ```
+```
 
 返回多个资源:
 
-    ```json
+```json
     {
     "list": [
         {
@@ -156,7 +156,7 @@ APISIX 在 v3 版本对响应体做了以下调整:
     ],
     "total": 2
     }
-    ```
+```
 
 ### 支持分页查询 {#support-paging-query}