We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Templates outside the app structure (ex: rails) are being validated.
Symptoms:
rails/mailers
BetterHtml::DontInterpolateHere in Rails::Mailers#preview
TBD
The text was updated successfully, but these errors were encountered:
a93ac11
Any progress on this @EiNSTeiN- ? Still seems present in the latest for me
Sorry, something went wrong.
It was fixed here a93ac11. Just ignore the files you don't want to be checked.
for anybody who runs into this same issue, add an initializer:
config/initializers/better-html.rb
if defined?(BetterHtml) BetterHtml.configure do |config| config.template_exclusion_filter = proc { |filename| !filename.start_with?(Rails.root.to_s) } end end
No branches or pull requests
Problem
Templates outside the app structure (ex: rails) are being validated.
Symptoms:
rails/mailers
raiseBetterHtml::DontInterpolateHere in Rails::Mailers#preview
Solution
TBD
The text was updated successfully, but these errors were encountered: