cmc-sales/go/internal/cmc/pdf/description_formatter.go

8 lines
199 B
Go

package pdf
// formatDescription passes through descriptions as-is
// HTML formatting should be applied in PHP before sending to this API
func formatDescription(text string) string {
return text
}