hugo-theme-relearn/layouts/shortcodes/swagger.html

20 lines
494 B
HTML
Raw Normal View History

{{- $original := .Get "src" }}
{{- with .Page.Resources.Match $original }}
{{- range . }}
{{- $original = .RelPermalink }}
{{- end }}
{{- end }}
<rapi-doc
allow-spec-file-download="true"
default-schema-tab="example"
font-size="largest"
layout="column"
load-fonts="false"
render-style="view"
schema-description-expanded="true"
schema-style="table"
show-header="false"
spec-url="{{ $original }}"
sort-tags="true"
></rapi-doc>
{{- .Page.Store.Set "htmlHasSwagger" true }}