search for: rawhtml

Displaying 2 results from an estimated 2 matches for "rawhtml".

Did you mean: r2html
2011 Jun 23
4
markdown conversions
...user-manual, it gets itself confused, with multiple headers being auto-assigned the same i.d.: > id="advanced" > id="basic" > id="bibtex" > id="compiling" > id="footnotes" > id="images" > id="rawhtml" pandoc checks for such duplicates, and appends a suffix (-1, -2, etc.) to assure that each one has a unique value... that's an ok solution, except that it makes it difficult to know what the i.d. is for any specific header because you have no idea whether it required an appendage, or not...
2007 Sep 04
11
returning(...) ?
...{path}" end Index: lib/merb/mailer.rb =================================================================== --- lib/merb/mailer.rb (revision 508) +++ lib/merb/mailer.rb (working copy) @@ -52,9 +52,9 @@ def initialize(o={}) self.config = :sendmail if config.nil? o[:rawhtml] = o.delete(:html) - @mail = returning MailFactory.new() do |m| - o.each { |k,v| m.send "#{k}=", v } - end + m = MailFactory.new() + o.each { |k,v| m.send "#{k}=", v } + @mail = m end end