We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't find much Typescript code at all for swapping Quill editor classes out for inline styles.
I need inline styles because the html string is eventually being passed to email service to render as html.
const customOptions = [{ import: 'attributors/style/size', whitelist: ['12px', '20px', '24px'] }, ]; //const att = Quill.import('attributors/style/size'); //Quill.register(att, true); Quill.import('attributors/style/direction'); Quill.register('attributors/style/direction', true); Quill.import('attributors/style/align'); Quill.register('attributors/style/align', true);
const customOptions = [{ import: 'attributors/style/size', whitelist: ['12px', '20px', '24px'] },
];
//const att = Quill.import('attributors/style/size'); //Quill.register(att, true); Quill.import('attributors/style/direction'); Quill.register('attributors/style/direction', true); Quill.import('attributors/style/align'); Quill.register('attributors/style/align', true);
I've found some code here and there but most forums are javascript would requires a different implementation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Can't find much Typescript code at all for swapping Quill editor classes out for inline styles.
I need inline styles because the html string is eventually being passed to email service to render as html.
I've found some code here and there but most forums are javascript would requires a different implementation.
The text was updated successfully, but these errors were encountered: