123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- ---
- title: Formats
- ---
- import FullEditor from '../../src/components/standalone/FullEditor';
- Quill supports a number of formats, both in UI controls and API calls.
- By default all formats are enabled and allowed to exist within a Quill editor and can be configured with the [formats](/docs/configuration/#formats) option. This is separate from adding a control in the [Toolbar](/docs/modules/toolbar/). For example, you can configure Quill to allow bolded content to be pasted into an editor that has no bold button in the toolbar.
- <FullEditor />
- <a className="standalone-link" href="/standalone/full/">
- Standalone
- </a>
- #### Inline
- - Background Color - `background`
- - Bold - `bold`
- - Color - `color`
- - Font - `font`
- - Inline Code - `code`
- - Italic - `italic`
- - Link - `link`
- - Size - `size`
- - Strikethrough - `strike`
- - Superscript/Subscript - `script`
- - Underline - `underline`
- #### Block
- - Blockquote - `blockquote`
- - Header - `header`
- - Indent - `indent`
- - List - `list`
- - Text Alignment - `align`
- - Text Direction - `direction`
- - Code Block - `code-block`
- #### Embeds
- - Formula - `formula` (requires [KaTex](https://khan.github.io/KaTeX/))
- - Image - `image`
- - Video - `video`
|