From fb21407e3abba0bf6c380196447562cef05de4f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jegors=20=C4=8Cemisovs?= Date: Sun, 28 May 2023 18:18:01 +0300 Subject: [PATCH] moved images and docs to corresponding folders --- LICENSE => docs/LICENSE | 0 README.md => docs/README.md | 4 ++-- sample.maze => docs/sample.maze | 0 maze-path.png => images/maze-path.png | Bin maze-sample.png => images/maze-sample.png | Bin 5 files changed, 2 insertions(+), 2 deletions(-) rename LICENSE => docs/LICENSE (100%) rename README.md => docs/README.md (94%) rename sample.maze => docs/sample.maze (100%) rename maze-path.png => images/maze-path.png (100%) rename maze-sample.png => images/maze-sample.png (100%) diff --git a/LICENSE b/docs/LICENSE similarity index 100% rename from LICENSE rename to docs/LICENSE diff --git a/README.md b/docs/README.md similarity index 94% rename from README.md rename to docs/README.md index 09d00f3..a07b921 100644 --- a/README.md +++ b/docs/README.md @@ -20,7 +20,7 @@ gawk -f maze-gen-two.awk -v Rows=8 -v Cols=36 -v Seed=42 ### Sample output -![Maze Sample](maze-sample.png) +![Maze Sample](../images/maze-sample.png) ### Make scripts executable @@ -50,4 +50,4 @@ gawk -f maze-runner.awk sample.maze ### Sample output of path -![Maze Path](maze-path.png) +![Maze Path](../images/maze-path.png) diff --git a/sample.maze b/docs/sample.maze similarity index 100% rename from sample.maze rename to docs/sample.maze diff --git a/maze-path.png b/images/maze-path.png similarity index 100% rename from maze-path.png rename to images/maze-path.png diff --git a/maze-sample.png b/images/maze-sample.png similarity index 100% rename from maze-sample.png rename to images/maze-sample.png