module Prawn::Rtl::Support::PrawnTextPatch
Public Instance Methods
original_text()
click to toggle source
Calls superclass method
# File lib/prawn/rtl/support.rb, line 11 def original_text super.map do |h| if h.key?(:text) h[:text] = Prawn::Rtl::Connector.fix_rtl(h[:text]) end h end end