<?xml version="1.0" encoding="UTF-8"?>
<!--
  OpenSearch description document — OpenSearch 1.1 Draft 6 (A9.com / OASIS).
  Spec: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md
  W3C-validated; consumed by Firefox / Edge / Chrome / Vivaldi / Safari (via
  manual add) for browser search-bar registration and OS-level search providers
  (Windows Search, macOS Spotlight web suggestions).

  Discovery: linked from <link rel="search" type="application/opensearchdescription+xml">
  in templates/base.html (every HTML page).

  Url template: canonical {searchTerms} → /search/?q=… Pagefind-UI in search.html
  reads `?q=` on DOMContentLoaded and calls `pfUi.triggerSearch(q)` so the deep-
  link both pre-populates AND runs the query. Both locales (uk default at /search/,
  en at /en/search/) consume the same param; we declare the default-language URL
  here as the canonical entry-point because OpenSearch description files don't
  vary per locale — `<Language>` is multi-valued and signals BCP-47 locales the
  engine indexes content in.

  ShortName: brand identifier (≤16 chars per spec).
  Description: ≤1024 chars; UTF-8 text, no HTML.
  Image: 16×16 favicon (browsers display this in the search-bar dropdown).
  moz: namespace — non-standard Mozilla extension, used by Firefox to set the
  "search engine homepage" link in the manage-search-engines UI.
-->
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
                       xmlns:moz="http://www.mozilla.org/2006/browser/search/">
  <ShortName>Scootify</ShortName>
  <Description>Educational reference on electric scooters — history, classification, components, operation, and safety. Verified facts with primary-source citations.</Description>
  <InputEncoding>UTF-8</InputEncoding>
  <Image height="16" width="16" type="image/x-icon">https://scootify.eco/favicon.ico</Image>
  <Url type="text/html" method="get" template="https://scootify.eco/search/?q={searchTerms}"/>
  <Language>uk-UA</Language>
  <Language>en-US</Language>
  <Contact>leonid@dzyha.com</Contact>
  <moz:SearchForm>https://scootify.eco/search/</moz:SearchForm>
</OpenSearchDescription>
