From 27b720245c95ea6bb59e51ed63e513eb5b9399d1 Mon Sep 17 00:00:00 2001 From: "Marian W." Date: Sat, 1 Feb 2025 20:42:56 +0100 Subject: [PATCH] Fix links --- README.md | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index a027f3c..a32a578 100644 --- a/README.md +++ b/README.md @@ -15,17 +15,6 @@ minipp provides a convenient way to parse and write configuration files in the " - **Single Header**: minipp is a single-header library, meaning you only need to include one file. -## Usage - -To use minipp in your project: - -```cpp -#define MINIPP_IMPLEMENTATION -#include "minipp.hpp" -``` - -Then, you can use `minipp::MiniPPFile` to parse and write mini files throughout your code. - ### Example Usage ```cpp @@ -132,11 +121,11 @@ int main() ## Example -An example mini file is contained in this [repository](test.mini). The full mini file format specilization can be found [here](https://github.com/ToyB-Chan/mini-file-format). +An example mini file is contained in this [repository](minipp/test.mini). The full mini file format specilization can be found [here](https://github.com/ToyB-Chan/mini-file-format). ## Installation -1. Copy the contents of "minipp.hpp" to a new file in your project. +1. Copy the contents of [minipp.hpp](minipp/minipp.hpp) to a new file in your project. 2. #Include "minipp.hpp" after defining MINIPP_IMPLEMENTATION in one single cpp file. 3. #Include "minipp.hpp" in any other desired files without the IMPLEMENTATION define!