I am using this configuration
tinymce.init({
plugins: 'link',
menubar: 'insert',
toolbar: 'link',
link_list: [
{title: 'Tiny Home Page', value: 'https://www.tiny.cloud'},
{title: 'Tiny Blog', value: 'https://www.tiny.cloud/blog'},
{title: 'TinyMCE Documentation', value: 'https://www.tiny.cloud/docs/'},
{title: 'TinyMCE on Stack Overflow', value: 'https://stackoverflow.com/questions/tagged/tinymce'},
{title: 'TinyMCE GitHub', value: 'https://github.com/tinymce/'}
]
});
In the link list, I am getting the list from my manual input in code. Is there any way I can add an input field to search the title of the links?