html-to-text / node-html-to-text

Advanced html to text converter
Other
1.61k stars 223 forks source link

Encoding issue #296

Closed prabhupb closed 1 year ago

prabhupb commented 1 year ago

Minimal HTML example

<div>£20</div>

Options

const options = {
    decodeEntities: false
  }
const text = htmlToText('<div>£20</div>', options)

Observed output

£20

Expected output

£20

Version information


Couldn't find any option to set encoding, the closest I could find seems to be removed in favour of decodeEntities.

prabhupb commented 1 year ago

not a bug, its an issue with my encoding on the server side.