using var doc = new Doc();
doc.HtmlOptions.Engine = EngineType.WebKit;
doc.HtmlOptions.ForWebKit.AddLinks = true;
// You can store a reference to the filter to reduce code repetition
var options = doc.HtmlOptions.ForWebKit;
options.UseScript = false;
doc.AddImageUrl("http://www.websupergoo.com");
doc.Save("wsg4.pdf");