github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/doc/themes/docsy/layouts/shortcodes/swaggerui.html (about)

     1  {{ $original := .Get "src" }}
     2  <div id="ohpen_swagger_ui"></div>
     3  <script>
     4    window.onload = function () {
     5      const ui = SwaggerUIBundle({
     6        url: {{ $original | relURL }},
     7        dom_id: '#ohpen_swagger_ui',
     8        presets: [
     9          SwaggerUIBundle.presets.apis,
    10          SwaggerUIStandalonePreset
    11        ]
    12      });
    13      window.ui = ui;
    14    };
    15  </script>