Documentation
Autoparse
autoparse #
Type: Boolean
Default: true
This setting turns off the default conversion of video (youtube/vimeo) and image URLs into embedded videos and images, and turns off automatic conversion of text URLs into clickable links.
$R('#content', {
autoparse: false
});
autoparseStart #
Type: Boolean
Default: true
This setting turns off the conversion of video (youtube/vimeo), image, and text URLs into embedded videos and images and clickable links on start of Redactor.
$R('#content', {
autoparseStart: false
});
autoparsePaste #
Type: Boolean
Default: true
This setting turns off the conversion of video (youtube/vimeo), image, and text URLs into embedded videos and images and clickable links on pasting content to Redactor.
$R('#content', {
autoparsePaste: false
});
autoparseLinks #
Type: Boolean
Default: true
This setting turns off the conversion of text URLs into clickable links.
$R('#content', {
autoparseLinks: false
});
autoparseImages #
Type: Boolean
Default: true
This setting turns off the conversion of image URLs into embedded images.
$R('#content', {
autoparseImages: false
});
autoparseVideo #
Type: Boolean
Default: true
This setting turns off the conversion of video (youtube/vimeo) URLs into embedded videos.
$R('#content', {
autoparseVideo: false
});