You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thank you for the plugin! It looks like very useful for our organization.
I think plugin work only with default textile, it finds only headers like "h2. ": page.content.text.scan(/h\d+\. (.*)?\r\n\r\n/).each.with_index(1) do |matched, i|
Can you adapt your code to check Redmine's text formatter settings (textile, markdown or ckeditor) and consider it when searching for sections? Please!
The text was updated successfully, but these errors were encountered:
I will support markdown, soon, But it is difficult to support CKEditor plugin.
My code is only calling Formatter#get_section method, But CKEditor plugin don't have get_section method...
First of all, thank you for the plugin! It looks like very useful for our organization.
I think plugin work only with default textile, it finds only headers like "h2. ":
page.content.text.scan(/h\d+\. (.*)?\r\n\r\n/).each.with_index(1) do |matched, i|
Default textile is very inconvinient, we use CKEditor: http://www.redmine.org/plugins/ckeditor - it's very powerfull.
Can you adapt your code to check Redmine's text formatter settings (textile, markdown or ckeditor) and consider it when searching for sections? Please!
The text was updated successfully, but these errors were encountered: