Hi:
Excellent editor. It would be convenient if the source code of the html property of the templates kept the values of the IDs of the elements.
Thanks a lot,
Carlos Cuesta
Hi,
You can use the attributesWhitelist option.
suneditor.create("", {
attributesWhitelist: {
"all": "id"
}
})
Hi:
Thank you very much for your prompt response and solution. Would the following be possible with data attributes?
attributesWhitelist: {
"all": "data-*"
}
A greeting
@cacuestai You can RegExp syntax.
ttributesWhitelist: { "all": "data-.+" }