CKEditor strips Tag

When the protectedSource solution is used, i tags are no longer stripped, but img tags stop showing up in the WYSIWIG mode of CKEditor (I’m using 4.3.1). The solution that worked better for me is to disable removing empty i tags using CKEDITOR.dtd.$removeEmpty For example, I added the following to the config.js // allow i … Read more

How to Increase/Update Variable Group value using Azure Devops Build Definition?

You can overwrite/update the value of the variables by using the logging command to set the variables again in Azure Devops Build pipleline: Write-Host “##vso[task.setvariable variable=testvar;]testvalue” To increase the value dynamically, you need to use the token $(Rev:.r). You can custom the variables based on the $(Build.BuildNumber) or $(Release.ReleaseName)as they will increase the value dynamically… … Read more