# 自定义总结

## 修改Quill format 默认白名单

**导入相应包**

```
// 设置字体大小白名单
const SizeStyle = Quill.import('attributors/style/size');
```

**修改白名单的值**

```
SizeStyle.whitelist = FontSize.map(item => item.value);
```

**重新绑定到Quill上**

```
Quill.register(SizeStyle);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kang-bing-kui.gitbook.io/quill/other/quick.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
