Reputation: 2197
Trying to customize DocuSign pages using resource files. Tried to modify the XML downloaded file and upload it again.
All the texto modifications are OK, but HTML escaped chars that previously were correctly rendered now are escaped in the HTML.
By example:
<data name="ActivationSec_SMSAuthDesc">Para acessar seu contrato, confirme seu número de telefone cadastrado:>br<;<ol class="MOB_orderedList" ><li>Clique em "Enviar SMS" para receber sei código de confirmação.</li><li>Insira o código recebido na próxima página.</li></ol></data>
This text should render a list (and it did, with the original text), but it doesn't:
How should I edit the XML resource file to accomplish that? Looks like a bug to me.
Upvotes: 0
Views: 205
Reputation: 100
I was having the same issues and couldn't find any answers on the DocuSign support docs.
The solution is annoyingly simple. Just use plain HTML tags! When you upload the resource file these tags are automatically converted.
<data name="ActivationSec_SMSAuthDesc"><b>Bold Text</b><br />New Line</data>
This example is using XHTML tags and works fine. Not sure about HTML5 support.
Upvotes: 1