8 lines
199 B
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
|
||
|
|
}
|