taqueci / redmine_wysiwyg_editor

Redmine WYSIWYG Editor plugin
GNU General Public License v2.0
114 stars 27 forks source link

Fix JS to keep span classes into wysiwyg #94

Closed B-Rass closed 4 years ago

B-Rass commented 4 years ago

I'll add a test tomorrow

taqueci commented 4 years ago

Thank you!

B-Rass commented 4 years ago

Thank you!

Sorry if it lacks some info on my PR. It's my first Open Source contribution, I need to get some reflex for the next ones ! ^^'

(Tell me if you still want more info)

taqueci commented 4 years ago

No problem! I found in redcloth3.rb:

    def pba
        ...
        cls = cls.split(/\s+/).map do |c|
          c.starts_with?('wiki-class-') ? c : "wiki-class-#{c}"
        end.join(' ') if cls

Thank you for your contribution!