2023-07-27 14:14:55 +00:00
|
|
|
{{- $page := .page }}
|
|
|
|
{{- if and (not $page) .context }}
|
|
|
|
{{- $page = .context }}
|
2023-11-20 23:53:33 +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 }}
|
2024-03-16 23:27:38 +00:00
|
|
|
{{- $spec := "" }}
|
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 }}
|
2024-03-16 23:27:38 +00:00
|
|
|
{{- with or
|
|
|
|
(.Resources.Get $src)
|
|
|
|
(resources.Get $src)
|
|
|
|
}}
|
|
|
|
{{- $spec = .Content }}
|
2023-05-14 21:05:07 +00:00
|
|
|
{{- 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 }}"
|
2024-03-16 23:27:38 +00:00
|
|
|
data-openapi-spec="{{ $spec | safeHTMLAttr }}"
|
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 }}
|