From 31a390f25f17b96a3d1b35992b4c51b50a11b640 Mon Sep 17 00:00:00 2001 From: ElBe <90863907+ElBe-Plaq@users.noreply.github.com> Date: Fri, 15 Sep 2023 07:13:05 +0200 Subject: [PATCH] Fixed tests being run --- .github/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/README.md b/.github/README.md index de39fd7..96e2920 100644 --- a/.github/README.md +++ b/.github/README.md @@ -38,7 +38,7 @@ To use localizer-rs, you need a directory (eg. `translations`) with your transla 1. Import the localizer-rs crate: - ```rust + ```rust,ignore use localizer_rs; @@ -46,7 +46,7 @@ To use localizer-rs, you need a directory (eg. `translations`) with your transla 2. Create a new config object: - ```rust + ```rust,ignore let config = localizer_rs::Config::new("DIRECTORY NAME", "LANGUAGE NAME"); @@ -54,7 +54,7 @@ To use localizer-rs, you need a directory (eg. `translations`) with your transla 3. Translate your text: - ```rust + ```rust,ignore config.t("key", vec!["placeholder", "value"]); @@ -74,7 +74,7 @@ With the following `en.json` file. And the following rust code. -```rust +```rust,ignore use localizer_rs;