Block quote elements render styled containers with a left border, useful for callouts, quoted text, or highlighted sections. They can contain any other content elements as children.Documentation Index
Fetch the complete documentation index at: https://docs.autype.com/llms.txt
Use this file to discover all available pages before exploring further.
Basic block quote
Properties
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
type | string | Yes | — | Must be "blockquote" |
id | string | No | auto | Unique identifier. Auto-generated if not provided. Max: 100 chars. |
content | array | Yes | — | Array of child elements (text, lists, images, etc.). Min: 1, max: 200. |
fontFamily | string | No | inherited | Font family override. Max: 100 chars. |
fontSize | number | No | inherited | Font size in pt (6–72). |
fontWeight | string | No | "normal" | "normal" or "bold" |
fontStyle | string | No | "normal" | "normal" or "italic" |
color | string | No | inherited | Text color in hex (#RGB or #RRGGBB). |
align | string | No | "left" | Alignment: "left", "center", "right", "justify" |
backgroundColor | string | No | — | Background color in hex (#RGB, #RRGGBB, or #RRGGBBAA with alpha). |
borderWidth | number | No | 3 | Border width in px (0–20). |
borderColor | string | No | "#CCCCCC" | Border color in hex (#RGB or #RRGGBB). |
borderTop | boolean | No | false | Show top border. |
borderBottom | boolean | No | false | Show bottom border. |
borderLeft | boolean | No | true | Show left border. |
borderRight | boolean | No | false | Show right border. |
indentLeft | number | No | 10 | Left indent in mm (0–100). |
indentRight | number | No | 0 | Right indent in mm (0–100). |
spacing | object | No | — | Spacing override with before and after in pt (0–100). |
The defaults shown above are the built-in fallbacks. Block quotes also respect styles from
defaults.styles.blockquote in your document configuration.Content
Thecontent array accepts the same element types as a flow section — text, headings, lists, images, tables, etc. This makes block quotes flexible containers:
Styling examples
Callout box with background
Box with all borders
Italic centered quote
Custom indent and spacing
Defaults
Configure default styles for all block quotes viadefaults.styles.blockquote:
Block quote style properties
| Property | Type | Description |
|---|---|---|
fontFamily | string | Default font family. Max: 100 chars. |
fontSize | number | Default font size in pt (6–72). |
fontWeight | string | "normal" or "bold" |
fontStyle | string | "normal" or "italic" |
color | string | Default text color in hex. |
align | string | Default alignment. |
backgroundColor | string | Default background color in hex (supports alpha). |
borderWidth | number | Default border width in px (0–20). |
borderColor | string | Default border color in hex. |
borderTop | boolean | Default top border visibility. |
borderBottom | boolean | Default bottom border visibility. |
borderLeft | boolean | Default left border visibility. |
borderRight | boolean | Default right border visibility. |
indentLeft | number | Default left indent in mm (0–100). |
indentRight | number | Default right indent in mm (0–100). |
defaults.spacing:
