Merge branch 'main' into feature/affichage-documentation

This commit is contained in:
Victor Lacasse-Beaudoin 2023-08-16 16:53:06 -05:00
commit bb9c54bd06

View file

@ -8,6 +8,7 @@ import (
"encoding/json"
"fmt"
"log"
"sort"
"embed"
"html/template"
@ -351,6 +352,8 @@ func handleDocumentation(c echo.Context) error {
})
}
sort.SliceStable(data, func(i, j int) bool { return data[i].Name < data[j].Name })
return c.Render(http.StatusOK, "documentation-html", data)
}