2023-07-27 14:14:55 +00:00
|
|
|
{{- $page := .page }}
|
|
|
|
{{- if and (not $page) .context }}
|
|
|
|
{{- $page = .context }}
|
2023-10-27 22:36:30 +00:00
|
|
|
{{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'openapi' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#5180" $page.File.Filename }}
|
2023-07-27 14:14:55 +00:00
|
|
|
{{- end }}
|
2023-05-14 21:05:07 +00:00
|
|
|
{{- $src := .src }}
|
2023-07-27 14:14:55 +00:00
|
|
|
{{- $id := cond (or (eq .id nil) (eq .id "")) (partial "make-random-md5.hugo" $page) .id }}
|
|
|
|
{{- with $page }}
|
2023-05-18 12:01:50 +00:00
|
|
|
{{- with .Resources.Match $src }}
|
2023-05-14 21:05:07 +00:00
|
|
|
{{- range . }}
|
|
|
|
{{- $src = .RelPermalink }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
<div class="sc-openapi-wrapper is-loading helper-loading-container">
|
|
|
|
<div
|
|
|
|
class="sc-openapi-container"
|
2023-09-23 08:18:31 +00:00
|
|
|
id="R-openapi-{{ $id }}"
|
2023-09-21 19:34:02 +00:00
|
|
|
data-openapi-url="{{ $src }}"
|
2023-05-14 21:05:07 +00:00
|
|
|
></div>
|
|
|
|
</div>
|
2023-10-09 15:42:51 +00:00
|
|
|
{{- .Store.Set "hasOpenApi" true }}
|
2023-05-14 21:05:07 +00:00
|
|
|
{{- end }}
|