Page 1 of 1

Extension Builder 6.4 escaping tags

Posted: Thu Sep 17, 2020 3:15 pm
by NDV
Hello!
Who can tell you. I train to do an xsl template Extension Builder 6.4.
Question 1
I try to add add tags to Type: edit.
In the output of WYSIWYG Web Builder I get escaping tags < span >
In Type: edit, I used Type Line and Multi line.

Code: Select all

<h3>Title 1</h3>
<p>&lt;span&gt;Lorem ipsum dolor&lt;/span&gt; sit amet, consectetur adipiscing elit. Integer nec</p>
Example: https://yadi.sk/d/kFy1prCy7XQSvg

Question 2
No support wwb16.min.js?

Re: Extension Builder 6.4 escaping tags

Posted: Thu Sep 17, 2020 3:19 pm
by Pablo
You can check 'wwb.min.js' to include wwb16.min.js

Unfortunate, I cannot help you with the creation of xsl templates.

Re: Extension Builder 6.4 escaping tags

Posted: Thu Sep 17, 2020 3:26 pm
by NDV
enabled wwb.min.js and connect wwb15.min.js

Code: Select all

<script src="js/wwb15.min.js"></script>
ExtBuilder.exe located "C:\Program Files\WYSIWYG Web Builder 16"
The default is WWB16

Re: Extension Builder 6.4 escaping tags

Posted: Sat Sep 19, 2020 11:08 am
by NDV
Found. This is not my fault.
I took extension from other developers.
Also, the error appears xsl Extension Builder 6.4, escapes HTML tags :cry:

Re: Extension Builder 6.4 escaping tags

Posted: Sat Sep 19, 2020 11:56 am
by Pablo
Extensions Builder uses MSXML for XML templates so the functionality is implemented in Windows.
https://en.wikipedia.org/wiki/MSXML

Re: Extension Builder 6.4 escaping tags

Posted: Sat Sep 19, 2020 2:25 pm
by BaconFries
It's been a very long time since I have written xsl so I will be rusty. From reading are you trying to do this
<p>&lt;span&gt;Lorem so that the output will be <p><span>Lorem
Then if memory serves me you have to escape using something like the following

Code: Select all

<xsl:value-of select="expression" disable-output-escaping="yes|no" />
As mentioned it been so long that this may be incorrect...

Re: Extension Builder 6.4 escaping tags

Posted: Sat Sep 19, 2020 3:19 pm
by NDV
Thank you very much for your help! :)