`. |
| Code block | `Ctrl+Alt+Shift+B` | Inserts a `` block. |
| Link | `Ctrl+K` | Opens link dialog (URL + optional text). |
## Toolbar-only formats (no shortcut)
These require opening the formatting toolbar and clicking the button:
| Action | Toolbar button aria-label |
| --- | --- |
| Text highlight color | "Text highlight color" |
| Font color | "Font color" |
| Font size | "Font size" |
| Paragraph style | "Paragraph" |
| Clear all formatting | "Clear all formatting" |
| Decrease indent | "Decrease indent" |
| Increase indent | "Increase indent" |
| Insert horizontal rule | "Insert horizontal rule" |
Open the toolbar with `Ctrl+Shift+X` (or click "Show Formatting options"),
then click via `evaluate_script`:
```js
() => {
const btn = Array.from(document.querySelectorAll('button'))
.find(b => b.getAttribute('aria-label') === 'Font color');
btn.click();
}
```