selfprivacy.org/_vendor/github.com/google/docsy/layouts/shortcodes/swaggerui.html

16 lines
350 B
HTML
Raw Normal View History

2024-04-21 23:04:16 +00:00
{{ $original := .Get "src" }}
2024-04-25 22:15:39 +00:00
<div id="docsy_swagger_ui"></div>
2024-04-21 23:04:16 +00:00
<script>
window.onload = function () {
const ui = SwaggerUIBundle({
url: {{ $original | relURL }},
2024-04-25 22:15:39 +00:00
dom_id: '#docsy_swagger_ui',
2024-04-21 23:04:16 +00:00
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
]
});
window.ui = ui;
};
</script>