Vladimir
Results
3
comments of
Vladimir
Try this ``` ... prettyTablesOptions := html2text.NewPrettyTablesOptions() prettyTablesOptions.AutoWrapText = false text, err := html2text.FromString(str, html2text.Options{PrettyTables: true, PrettyTablesOptions: prettyTablesOptions}) ... ```
The problem is in the `tablewriter` library. Try setting PrettyTablesOptions.AutoWrapText = false. A similar problem in #48
@quiet2, @military77 fixed