From 541ae25c94800e1592ef9321fe77781790b050fb Mon Sep 17 00:00:00 2001 From: Stephan Meijer Date: Wed, 18 Feb 2026 22:24:33 +0100 Subject: [PATCH] docs: add property to inline content --- docs/content/docs/features/blocks/inline-content.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/content/docs/features/blocks/inline-content.mdx b/docs/content/docs/features/blocks/inline-content.mdx index 23512e9e47..10bc4b8d9b 100644 --- a/docs/content/docs/features/blocks/inline-content.mdx +++ b/docs/content/docs/features/blocks/inline-content.mdx @@ -108,5 +108,10 @@ type Styles = { * @default "default" */ textColor: string; + /** + * Whether the text is code. + * @default false + */ + code: boolean; }; ```