fixed map

This commit is contained in:
Oleg Belyaev 2025-03-30 01:25:51 +03:00
parent 9109c93e6a
commit abf143eeab

View file

@ -59,3 +59,13 @@ declare %rest:path("{$lang}/map")
")} ")}
</script>) </script>)
}; };
declare %rest:path("map")
%rest:query-param("entry", "{$entry}")
%rest:GET
%rest:produces("text/html")
%output:method("html")
%output:html-version('5')
function map:map($entry as xs:string) {
map:map('en', $entry)
};