From 3d412538d8752516102b13ae49f7f10e8b496c4c Mon Sep 17 00:00:00 2001 From: Dan Siegel Date: Thu, 15 Feb 2024 09:23:02 -0600 Subject: [PATCH] fix: invalid link warnings --- docfx.json | 7 ++----- docs/platforms/xamarin-forms/dialogs/styling-dialogs.md | 4 ++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/docfx.json b/docfx.json index 65e92a8..f62b16b 100644 --- a/docfx.json +++ b/docfx.json @@ -11,6 +11,7 @@ "*.md" ], "exclude": [ + "README.md", "obj/**", "_site/**" ] @@ -20,11 +21,7 @@ { "files": [ "index.html", - "images/**", - "docs/getting-started/images/**", - "docs/platforms/maui/images/**", - "docs/platforms/wpf/images/**", - "docs/platforms/xamarin-forms/images/**" + "**/images/**" ], "exclude": [ ".github/**", diff --git a/docs/platforms/xamarin-forms/dialogs/styling-dialogs.md b/docs/platforms/xamarin-forms/dialogs/styling-dialogs.md index cb6df82..253f449 100644 --- a/docs/platforms/xamarin-forms/dialogs/styling-dialogs.md +++ b/docs/platforms/xamarin-forms/dialogs/styling-dialogs.md @@ -6,7 +6,7 @@ The Dialog Service has several extensibility points to help your provide richly There may be times in which you want to ensure that your Dialog is sized relative to the size of your user's screen. -![Dialog Demo](../../images/demodialog-small.png) +![Dialog Demo](../../../images/demodialog-small.png) You'll notice from this screenshot that the Dialog is sized slightly larger than the content of view. In order to achieve a consistent size for your dialog you may want to set the Relative Height or Width properties on the DialogLayout. @@ -35,7 +35,7 @@ Under the covers, the Dialog Service uses an Absolute Layout to position the con x:Class="HelloWorld.Views.DemoDialog"> ``` -![Custom Layout](../../Images/useralert-small.png) +![Custom Layout](../../../Images/useralert-small.png) ## Background Mask