From f8276e90c3941438b4aec0eb767ccc205bdcc7fd Mon Sep 17 00:00:00 2001 From: Jim Cramer Date: Mon, 16 Oct 2023 12:31:56 +0200 Subject: [PATCH] Remove block quotes from images --- 2-Browsers/Week1/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-Browsers/Week1/README.md b/2-Browsers/Week1/README.md index eaaadac3..d32c22a3 100644 --- a/2-Browsers/Week1/README.md +++ b/2-Browsers/Week1/README.md @@ -132,7 +132,7 @@ Start with this webpage, which has a single img tag of an animated GIF of a cat This is what it should like: -> ![catwalk](../../assets/catwalk.gif) +![catwalk](../../assets/catwalk.gif) ## Prep exercises @@ -156,7 +156,7 @@ As illustrated in the picture below, the game is a two-dimensional grid where ce In the exercise code a new generation of cells replaces the previous one every 200ms. For each cell of the new generation life or death is determined by applying the above rules on the state of that same cell in the current generation. -> ![Game of Life changing](../../assets/game-of-life-1.gif) +![Game of Life changing](../../assets/game-of-life-1.gif) ### Code walk-through