From d74a94a8081cebb23ffefb7685ef1eb787af989b Mon Sep 17 00:00:00 2001 From: David Holdeman Date: Thu, 19 Jan 2023 19:19:16 -0600 Subject: [PATCH] add file with examples --- check.txt | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 check.txt diff --git a/check.txt b/check.txt new file mode 100644 index 00000000..c69e44d5 --- /dev/null +++ b/check.txt @@ -0,0 +1,49 @@ +# Bad Link Tests + +This file has some examples of good and bad link and image styles. + +[good link](Idle-Control) + +[bad link](Idle_Control) +should be Idle-Control + +[bad link](./Idle-Control) +should be Idle-Control + +[bad link](/Idle-Control) +should be Idle-Control + +[bad link](./Idle-Control.md) +should be Idle-Control + +[bad link](/Idle-Control.md) +should be Idle-Control + +[bad link](Idle-Control.md) +should be Idle-Control + +![good img](Images/Red_LED.png) + +![bad img](Images/Red-LED.png) +should be Images/Red_LED.png + +![bad img](Red_LED.png) +should be Images/Red_LED.png + +![bad img](Red_LED) +should be Images/Red_LED.png + +![bad img](Images/Red_LED) +should be Images/Red_LED.png + +![bad img](./Images/Red_LED.png) +should be Images/Red_LED.png + +![bad img](./Images/Red_LED) +should be Images/Red_LED.png + +![bad img](/Images/Red_LED.png) +should be Images/Red_LED.png + +![bad img](/Images/Red_LED) +should be Images/Red_LED.png