add option :trim_whitespace to parser #15
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Two options for disabling whitespace trimming have been added:
config :eml, trim_whitespace: false
If both variants are used, the option passed directly to the parser will
override the app wide config.
If no option is given, true will be used as the default value and thus
keep the old behavior.
Reason for the change: I've got an app where we receive user created html (in froala) which we transform using Eml. However we sometimes got the problem that we've got spans in the html for the background color of some text, and currently Eml removes those whitespaces, something that is not expected by the end users.
So we've created this fork which simply adds the two options above, would be nice if you could merge it so that we can remove our own fork.