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

8 lines
199 B
Go
Raw Normal View History

2026-01-16 04:26:56 -08:00
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
}