The configuration embed property defines options related to editor link embed behavior.  When configured, the editor will embed links inserted into the editor on pressing the enter key or paste.

This option was introduced in Textbox.io release 2.2.0.

Example Configuration

In this example, a simple configuration object is created to define a link validation service.

var configLinks = {
	links : {
		embed : {
			url : 'http://yourlinks.server.com/ephox-hyperlinking/' 
		}
	}
};
 
var editor = textboxio.replace('#targetId', configLinks);

Properties

PropertyTypeValue
urlString

URL to the link embed service. For more information on the validation service, please see the services Installation and Setup section.

 

 

Services Disabled by Default

Textbox.io services are not enabled by default. Defining service urls enables those services and their respective client components. For more details, see: Server-Side Components.