We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d488d2 commit 12cbf5cCopy full SHA for 12cbf5c
internal/txpfiber/handler.go
@@ -14,7 +14,7 @@ import (
14
15
func HandleCompile(c *fiber.Ctx) error {
16
reqFormat := c.Query("format", "pdf")
17
- if reqFormat != "pdf" && reqFormat != "png" {
+ if reqFormat != "pdf" && reqFormat != "png" && reqFormat != "svg" {
18
c.SendStatus(fiber.ErrNotImplemented.Code)
19
}
20
tName := c.Params("templateName", "")
0 commit comments