File tree 3 files changed +41
-1
lines changed
3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ const config = {
141
141
groupPathsBy : "tag" ,
142
142
categoryLinkSource : "tag" ,
143
143
} ,
144
+ template : "openapi.mustache" , // Customize API MDX with mustache template
144
145
}
145
146
}
146
147
}
Original file line number Diff line number Diff line change
1
+ ---
2
+ id: { {{id} }}
3
+ title: "{ {{frontMatter.description} }}"
4
+ description: "{ {{frontMatter.description} }}"
5
+ { {^api} }
6
+ sidebar_label: Introduction
7
+ { {/api} }
8
+ { {#api} }
9
+ sidebar_label: "{ {{frontMatter.description} }}"
10
+ { {/api} }
11
+ { {^api} }
12
+ sidebar_position: 0
13
+ { {/api} }
14
+ hide_title: false
15
+ { {#api} }
16
+ hide_table_of_contents: true
17
+ { {/api} }
18
+ { {#json} }
19
+ api: { {{json} }}
20
+ { {/json} }
21
+ { {#api.method} }
22
+ sidebar_class_name: "{ {{api.method} }} api-method"
23
+ { {/api.method} }
24
+ { {#infoPath} }
25
+ info_path: { {{infoPath} }}
26
+ { {/infoPath} }
27
+ custom_edit_url: null
28
+ { {#frontMatter.proxy} }
29
+ proxy: { {{frontMatter.proxy} }}
30
+ { {/frontMatter.proxy} }
31
+ { {#frontMatter.hide_send_button} }
32
+ hide_send_button: true
33
+ { {/frontMatter.hide_send_button} }
34
+ { {#frontMatter.show_extensions} }
35
+ show_extensions: true
36
+ { {/frontMatter.show_extensions} }
37
+ ---
38
+
39
+ { {{markdown} }}
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments