Tag: code-reading

Daily Code Reading #32 – Redmine WikiFormatting

Yesterday’s post showed how ApplicationHelper#textilizable used Redmine::WikiFormatting#to_html to convert the text content into HTML. 1 text = Redmine::WikiFormatting.to_html(Setting.text_formatting, text, :object => obj, :attribute => attr) { |macro, args| exec_macro(macro, obj, args) }text = Redmine::WikiFormatting.to_html(Setting.text_formatting, text, :object => obj, :attribute => attr) { |macro, args| exec_macro(macro, obj, args) } Today I’m going to look into the …

Read more