You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stuck into the same problem, after some hours searching came up with a solution.
The problem is: the inliner library parses html using the standard library into tree, replacing all special html symbols with unicode ones (e.g. " " is replaced by "\u00a0").
So when you do
fmt.Println(inline)
the non-breaking space will be printed as an ordinary space.
The inliner library replaces
is replaced with a space character. In my opinion, inliner should leave
as it is. Here is a short test.This prints:
Any quick fix for this?
The text was updated successfully, but these errors were encountered: