Skip to content

Commit

Permalink
Add Rails 7.1 support.
Browse files Browse the repository at this point in the history
Handle when `string` is a `ActionView::OutputBuffer` by converting it to a `String` first.

Pulled from zombocom#71.
  • Loading branch information
joshuapinter committed Jan 15, 2024
1 parent 3b0fbf5 commit 2cbb582
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/maildown/markdown_engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ module MarkdownEngine
@maildown_markdown_engine_text_block = nil

def self.to_html(string)
string = string.to_s if string.ia_a?(ActionView::OutputBuffer) # Needed for Rails 7.1 support. See https://github.com/zombocom/maildown/pull/71
html_block.call(string)
end

def self.to_text(string)
string = string.to_s if string.ia_a?(ActionView::OutputBuffer) # Needed for Rails 7.1 support. See https://github.com/zombocom/maildown/pull/71
text_block.call(string)
end

Expand Down

0 comments on commit 2cbb582

Please sign in to comment.