Skip to content
New issue

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

If dynamic modifications and updates are made to options configuration, such as options configuration? #4575

Open
parlay96 opened this issue Jan 21, 2025 · 0 comments

Comments

@parlay96
Copy link

const quill = new Quill('#editor', {
modules: {
toolbar: {
container: '#toolbar', // Selector for toolbar container
handlers: {
bold: customBoldHandler
}
}
}
});
// If dynamic modifications and updates are made to options configuration, such as options configuration?
{
theme?: string;
debug?: DebugLevel | boolean;
registry?: Parchment.Registry;
/**

  • Whether to disable the editing
  • @default false
    */
    readOnly?: boolean;

/**

  • Placeholder text to display when the editor is empty
  • @default ""
    */
    placeholder?: string;
    bounds?: HTMLElement | string | null;
    modules?: Record<string, unknown>;

/**

  • A list of formats that are recognized and can exist within the editor contents.
  • null means all formats are allowed.
  • @default null
    */
    formats?: string[] | null;
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant