Hi Support Team,
I am using below code snippet to save the word document as pdf document.
Aspose.Words.Document doc = new Aspose.Words.Document(source);
doc.Save(destination, Aspose.Words.SaveFormat.Pdf);
In word document i am having hyper link url which is having space.So MS word is replacing space to %20 .
ex: www.google.com/North America changed as www.google.com/North%20America
And when i used above code snippet to convert the word document to pdf its again doing url encoding i guess.
After opening PDF i found url again changed as below
www.google.com/North%2520America
what would be the solution for this issue.