From 63759b29065fa2ef8b4832978b875ed0e71d59f7 Mon Sep 17 00:00:00 2001 From: grantmartin2002-oss Date: Mon, 2 Mar 2026 16:12:19 -0600 Subject: [PATCH] escape mdx --- docs/src/content/docs/features/windows/options.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/features/windows/options.mdx b/docs/src/content/docs/features/windows/options.mdx index 62b100567..7cdb927d6 100644 --- a/docs/src/content/docs/features/windows/options.mdx +++ b/docs/src/content/docs/features/windows/options.mdx @@ -828,7 +828,7 @@ Controls how the window behaves across macOS Spaces and fullscreen. These are bi - `MacWindowCollectionBehaviorFullScreenAllowsTiling` - Allows side-by-side tiling (macOS 10.11+) - `MacWindowCollectionBehaviorFullScreenDisallowsTiling` - Prevents tiling (macOS 10.11+) -**Note:** NSWindow fullscreen overlay requires application.Options{ Mac: application.MacOptions{ ActivationPolicy: application.ActivationPolicyAccessory } } +**Note:** NSWindow fullscreen overlay requires `application.Options{ Mac: application.MacOptions{ ActivationPolicy: application.ActivationPolicyAccessory } }` **Example - Spotlight-like window:** ```go @@ -861,7 +861,7 @@ Options for NSPanel windows (only applies when `WindowClass` is `NSPanel`): - `NonactivatingPanel` - Panel receives input without activating the application - `UtilityWindow` - Panel uses utility window style -**Note:** Unlike NSWindow, NSPanel fullscreen overlay does NOT require application.Options{ Mac: application.MacOptions{ ActivationPolicy: application.ActivationPolicyAccessory } } +**Note:** Unlike NSWindow, NSPanel fullscreen overlay does NOT require `application.Options{ Mac: application.MacOptions{ ActivationPolicy: application.ActivationPolicyAccessory } }` **Example - Spotlight-like panel:** ```go