Add dict links to cloud fn output.

This commit is contained in:
Ray Miller 2024-04-20 15:16:07 +01:00
parent ce14f51ace
commit 79e1ade153

View file

@ -124,7 +124,12 @@ var resultsTmpl = template.Must(template.New("results").Parse(`
{{ end }} {{ end }}
<ul> <ul>
{{ range .Results }} {{ range .Results }}
<li>{{.}}</li> <li>
{{.}}
<a href="https://dicoweb.gnu.org.ua/?q={{.}}&db=gcide&define=1" target="defn">GCIDE</a>
<a href="https://dicoweb.gnu.org.ua/?q={{.}}&db=WordNet&define=1" target="defn">WordNet</a>
<a href="https://dictionary.cambridge.org/dictionary/english/{{.}}" target="defn">Cambridge</a>
</li>
{{ end }} {{ end }}
</ul> </ul>
`)) `))