taqueci / redmine_wysiwyg_editor

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

HTML symbol $mdash; replaced with hyphens #38

Closed randylang closed 4 years ago

randylang commented 5 years ago

The symbol — is replaced with -- but my version of Redmine handles these and many other symbols just fine.

Edit: I forgot to say, I think this is an excellent tool, It lowers the barrier for our users to adopt the Wiki and write better PR. Thank you for the excellent tool.

My Redmine Info page:

Environment:
  Redmine version                3.4.6.stable
  Ruby version                   2.3.3-p222 (2016-11-21) [i386-mingw32]
  Rails version                  4.2.8
  Environment                    production
  Database adapter               Mysql2
SCM:
  Subversion                     1.10.0
  Git                            2.17.1
  Filesystem                     
Redmine plugins:
  redmine_checklists             3.1.12
  redmine_wiki_gchart_formula    0.0.5
  redmine_wysiwyg_editor         0.3.3
taqueci commented 5 years ago

Hi @randylang

I think this is an excellent tool, It lowers the barrier for our users to adopt the Wiki and write better PR. Thank you for the excellent tool.

I'm glad to hear that! That's just the reason why I started to develop this plugin.

I have confirmed the issue in my environment. It will take a little more time to investigate the root cause.

taqueci commented 4 years ago

Docerfile

FROM ruby:2.3.3

MAINTAINER Takeshi Nakamura

ARG version=3.4.6
ARG install_dir=/opt/redmine

RUN apt-get update && apt-get install -qq -y sqlite3 git

WORKDIR $install_dir

# Redmine
RUN svn co -q http://svn.redmine.org/redmine/tags/$version .

# Database configuration
RUN echo 'development:\n\
  adapter: sqlite3\n\
  database: db/redmine_development.db\n\
'> config/database.yml

RUN bundle install --without mysql postgresql rmagick test
RUN bundle exec rake db:migrate

RUN git clone -b 0.3.3 https://github.com/taqueci/redmine_wysiwyg_editor.git plugins/redmine_wysiwyg_editor
RUN git clone -b Ver_0_0_5 https://github.com/masamitsu-murase/redmine_wiki_gchart_formula.git plugins/redmine_wiki_gchart_formula

RUN bundle install
RUN bundle exec rake redmine:plugins:migrate

RUN bundle exec rake generate_secret_token

EXPOSE 3000
CMD bundle exec rails s -p 3000 -b '0.0.0.0'
taqueci commented 4 years ago

The root cause is the same as #70.

taqueci commented 4 years ago

The issue has been fixed.