@@ -88,12 +88,12 @@ function endpointBodyTemplate(path) {
88
88
89
89
const codeSampleTabPanel = path . xCodeSamples ? codeSamplesTemplate ( path . xCodeSamples ) : '' ;
90
90
return html `
91
- < div part ="section-end-point -body " class ='endpoint-body ${ path . method } ${ path . deprecated ? 'deprecated' : '' } '>
91
+ < div part ="section-endpoint -body " class ='endpoint-body ${ path . method } ${ path . deprecated ? 'deprecated' : '' } '>
92
92
< div class ="summary ">
93
93
${ path . summary
94
- ? html `< div class ="title " part ="section-end-point -body-title "> ${ path . summary } < div > `
94
+ ? html `< div class ="title " part ="section-endpoint -body-title "> ${ path . summary } < div > `
95
95
: path . shortSummary !== path . description
96
- ? html `< div class ="title " part ="section-end-point -body-title "> ${ path . shortSummary } </ div > `
96
+ ? html `< div class ="title " part ="section-endpoint -body-title "> ${ path . shortSummary } </ div > `
97
97
: ''
98
98
}
99
99
${ path . xBadges && path . xBadges ?. length > 0
@@ -108,7 +108,7 @@ function endpointBodyTemplate(path) {
108
108
: ''
109
109
}
110
110
111
- ${ path . description ? html `< div part ="section-end-point -body-description " class ="m-markdown "> ${ unsafeHTML ( marked ( path . description ) ) } </ div > ` : '' }
111
+ ${ path . description ? html `< div part ="section-endpoint -body-description " class ="m-markdown "> ${ unsafeHTML ( marked ( path . description ) ) } </ div > ` : '' }
112
112
< slot name ="${ path . elementId } "> </ slot >
113
113
${ pathSecurityTemplate . call ( this , path . security ) }
114
114
${ codeSampleTabPanel }
@@ -203,7 +203,7 @@ export default function endpointTemplate(showExpandCollapse = true, showTags = t
203
203
}
204
204
return true ;
205
205
} ) . map ( ( path ) => html `
206
- < section part ="section-end-point " id ='${ path . elementId } ' class ='m-endpoint regular-font ${ path . method } ${ pathsExpanded || path . expanded ? 'expanded' : 'collapsed' } '>
206
+ < section part ="section-endpoint " id ='${ path . elementId } ' class ='m-endpoint regular-font ${ path . method } ${ pathsExpanded || path . expanded ? 'expanded' : 'collapsed' } '>
207
207
${ endpointHeadTemplate . call ( this , path , pathsExpanded ) }
208
208
${ pathsExpanded || path . expanded ? endpointBodyTemplate . call ( this , path ) : '' }
209
209
</ section > ` )
0 commit comments