You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
Desktop: Fixes #9512: Pasting rich text in the RTE sometimes result in invalid markup
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { MarkupToHtmlOptions } from './types';
|
||||
|
||||
export default (override: MarkupToHtmlOptions = null): MarkupToHtmlOptions => {
|
||||
return {
|
||||
plugins: {
|
||||
checkbox: {
|
||||
checkboxRenderingType: 2,
|
||||
},
|
||||
link_open: {
|
||||
linkRenderingType: 2,
|
||||
},
|
||||
},
|
||||
replaceResourceInternalToExternalLinks: true,
|
||||
...override,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user