Special character problem when switching between Script Builder and Free Flow Scripting
Dear ZOHO,
In an html view, I want to be able to display the text with HTML codes etc. I'm building a view for this. I have two problems.
1
When I switch between Script Builder and Free Flow Scripting, special ASCII codes get interpreted into the (finally) intended character. This is very annoying when developing. Why can the code not be exactly kept. This is an example of code that gets flattened.
Before:
- Stem = (r.Stimulus_RT).replaceAll("<","<");
- Stem = Stem.replaceAll(">",">");
After
- Stem = (r.Stimulus_RT).replaceAll("<","<");
- Stem = Stem.replaceAll(">",">;");
Can this problem be addressed please.
2
In the HTML view I just want HTML code to be displayed as HTML code that then can be imported into an HTML page. So the view must display the bear HTML code. Is there a way to achieve this, other than I try to do in the example above? I tried to insert something like <pre> in a view, but that did not work.
I hope for a positive resonse.
Kind regards,
Silvester Draaijer