If I stop using JEditor,
Will I see native HTML tagges all around with old issues which is edited with JEditor?
yeah you will. We are fighting with these Problems atm
I have the same issue and resolved it by editing the database (Postgres)
UPDATE public.jiraaction SET actionbody = regexp_replace(regexp_replace(actionbody, E'<[^>]+>', '', 'gi' ), E' ', ' ', 'g');
UPDATE public.jiraissue SET description = regexp_replace(regexp_replace(description, E'<[^>]+>', '', 'gi' ), E' ', ' ', 'g');
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
Currently if you switch renderer from JEditor to wiki or plain text you will see html tags in your fields. This happens because none of the default renderers can render html (wiki can if you enable html macro).
You will experience same behavior with wiki markup if you switch from wiki renderer to plain text.
We can create a display mode for JEditor to render html when renderer is set to wiki/plain text. However this will only affect view of the issue. If you edit such a field you will still see html.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We have just shipped JEditor 2. This version can render HTML in the Description and Comment field even when renderer is set to Wiki / plain text.
To force HTML rendering go to JEditor Configuration > Advanced and add the following line:
--enable-fb-renderer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.