diff --git a/Sources/LiveViewNative/Image Modifiers/AntialiasedModifier.swift b/Sources/LiveViewNative/Image Modifiers/AntialiasedModifier.swift
index e0153df239..fd5849d69d 100644
--- a/Sources/LiveViewNative/Image Modifiers/AntialiasedModifier.swift
+++ b/Sources/LiveViewNative/Image Modifiers/AntialiasedModifier.swift
@@ -10,7 +10,7 @@ import SwiftUI
/// Enables/disables antialiasing.
///
/// ```html
-///
+///
/// ```
///
/// ## Arguments
diff --git a/Sources/LiveViewNative/Image Modifiers/InterpolationModifier.swift b/Sources/LiveViewNative/Image Modifiers/InterpolationModifier.swift
index 6d1e232460..8142886880 100644
--- a/Sources/LiveViewNative/Image Modifiers/InterpolationModifier.swift
+++ b/Sources/LiveViewNative/Image Modifiers/InterpolationModifier.swift
@@ -15,11 +15,11 @@ import SwiftUI
/// ```html
/// resizable() |> interpolation(interpolation: :none)}
+/// modifiers={resizable([]) |> interpolation(:none)}
/// />
/// resizable() |> interpolation(interpolation: :medium)}
+/// modifiers={resizable([]) |> interpolation(:medium)}
/// />
/// ```
///
diff --git a/Sources/LiveViewNative/Image Modifiers/RenderingModeModifier.swift b/Sources/LiveViewNative/Image Modifiers/RenderingModeModifier.swift
index 7f7eb11617..4819b1029f 100644
--- a/Sources/LiveViewNative/Image Modifiers/RenderingModeModifier.swift
+++ b/Sources/LiveViewNative/Image Modifiers/RenderingModeModifier.swift
@@ -13,8 +13,8 @@ import SwiftUI
/// The `template` mode renders nontransparent pixels as the foreground color.
///
/// ```html
-///
-///
+///
+///
/// ```
///
/// This modifier can also be used to render multicolor SF Symbols.
@@ -23,7 +23,7 @@ import SwiftUI
/// ```html
///
/// ```
///
diff --git a/Sources/LiveViewNative/Image Modifiers/ResizableModifier.swift b/Sources/LiveViewNative/Image Modifiers/ResizableModifier.swift
index 4bba51617a..4fafd88970 100644
--- a/Sources/LiveViewNative/Image Modifiers/ResizableModifier.swift
+++ b/Sources/LiveViewNative/Image Modifiers/ResizableModifier.swift
@@ -10,8 +10,8 @@ import SwiftUI
/// Enables an image to fill the available space.
///
/// ```html
-///
-///
+///
+///
/// ```
///
/// ## Arguments
diff --git a/Sources/LiveViewNative/Modifiers/Animations Modifiers/AnimationModifier.swift b/Sources/LiveViewNative/Modifiers/Animations Modifiers/AnimationModifier.swift
index 8b89d864f7..dda175c05a 100644
--- a/Sources/LiveViewNative/Modifiers/Animations Modifiers/AnimationModifier.swift
+++ b/Sources/LiveViewNative/Modifiers/Animations Modifiers/AnimationModifier.swift
@@ -16,8 +16,8 @@ import SwiftUI
///
/// ```html
///
/// ```
///
@@ -27,8 +27,8 @@ import SwiftUI
///
/// ```html
///
/// ```
///
diff --git a/Sources/LiveViewNative/Modifiers/Animations Modifiers/ContentTransitionModifier.swift b/Sources/LiveViewNative/Modifiers/Animations Modifiers/ContentTransitionModifier.swift
index b7f8e7a713..7007847320 100644
--- a/Sources/LiveViewNative/Modifiers/Animations Modifiers/ContentTransitionModifier.swift
+++ b/Sources/LiveViewNative/Modifiers/Animations Modifiers/ContentTransitionModifier.swift
@@ -13,13 +13,12 @@ import SwiftUI
///
/// ```html
/// content_transition(transition: :numeric_text)
-/// |> animation(value: @count)
-/// }
+/// modifiers={
+/// content_transition(:numeric_text)
+/// |> animation(value: @count)
+/// }
/// >
-/// <%= @count %>
+/// <%= @count %>
///
/// ```
///
diff --git a/Sources/LiveViewNative/Modifiers/Animations Modifiers/KeyframeAnimatorModifier.swift b/Sources/LiveViewNative/Modifiers/Animations Modifiers/KeyframeAnimatorModifier.swift
index ad0f51b688..f26b5b0268 100644
--- a/Sources/LiveViewNative/Modifiers/Animations Modifiers/KeyframeAnimatorModifier.swift
+++ b/Sources/LiveViewNative/Modifiers/Animations Modifiers/KeyframeAnimatorModifier.swift
@@ -19,7 +19,7 @@ import SwiftUI
/// keyframe_animator(
+/// keyframe_animator(
/// initial_value: 1.0,
/// trigger: "#{@liked}",
/// keyframes: [
@@ -27,7 +27,7 @@ import SwiftUI
/// {:spring, 1.5, [duration: 0.8, spring: :bouncy]},
/// {:spring, 1.0, [spring: :bouncy]}
/// ],
-/// modifiers: @native |> scale_effect(x: 1.0, y: 1.0),
+/// modifiers: scale_effect(x: 1.0, y: 1.0),
/// properties: [scale_effect: [:x, :y]]
/// )
/// }
diff --git a/Sources/LiveViewNative/Modifiers/Animations Modifiers/MatchedGeometryEffectModifier.swift b/Sources/LiveViewNative/Modifiers/Animations Modifiers/MatchedGeometryEffectModifier.swift
index c500df921d..466baee4ac 100644
--- a/Sources/LiveViewNative/Modifiers/Animations Modifiers/MatchedGeometryEffectModifier.swift
+++ b/Sources/LiveViewNative/Modifiers/Animations Modifiers/MatchedGeometryEffectModifier.swift
@@ -21,13 +21,13 @@ import SwiftUI
/// Use the same `id` argument for elements that should be paired.
///
/// ```html
-/// animation(value: Atom.to_string(@is_flipped))}>
+///
/// <%= if @is_flipped do %>
-/// matched_geometry_effect(id: "a", namespace: :animation)}>A
-/// matched_geometry_effect(id: "b", namespace: :animation)}>B
+/// A
+/// B
/// <% else %>
-/// matched_geometry_effect(id: "b", namespace: :animation)}>B
-/// matched_geometry_effect(id: "a", namespace: :animation)}>A
+/// B
+/// A
/// <% end %>
///
///
diff --git a/Sources/LiveViewNative/Modifiers/Animations Modifiers/TransitionModifier.swift b/Sources/LiveViewNative/Modifiers/Animations Modifiers/TransitionModifier.swift
index 60259a660d..087ae196c1 100644
--- a/Sources/LiveViewNative/Modifiers/Animations Modifiers/TransitionModifier.swift
+++ b/Sources/LiveViewNative/Modifiers/Animations Modifiers/TransitionModifier.swift
@@ -13,7 +13,7 @@ import SwiftUI
///
/// ```html
/// <%= if @show do %>
-/// Scaled
+/// Scaled
/// <% end %>
/// ```
///
diff --git a/Sources/LiveViewNative/Modifiers/Controls and Indicators Modifiers/ButtonBorderShapeModifier.swift b/Sources/LiveViewNative/Modifiers/Controls and Indicators Modifiers/ButtonBorderShapeModifier.swift
index 2906f90331..8ffc755308 100644
--- a/Sources/LiveViewNative/Modifiers/Controls and Indicators Modifiers/ButtonBorderShapeModifier.swift
+++ b/Sources/LiveViewNative/Modifiers/Controls and Indicators Modifiers/ButtonBorderShapeModifier.swift
@@ -10,10 +10,10 @@ import SwiftUI
/// Alters the shape of any bordered buttons' borders.
///
/// ```html
-///