pdf.avoidLinksBoolean|String
(default: false)
A flag indicating whether to produce actual hyperlinks in the exported PDF file.
It's also possible to pass a CSS selector as argument. All matching links will be ignored.
Available in versions 2015.3.1020 and later
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
tools: ["pdf"],
pdf: {
avoidLinks: true
}
});
</script>
In this article