From 538319fa425488baf3263ef2f4d752eb421f3ea3 Mon Sep 17 00:00:00 2001 From: Miguel Sousa Date: Tue, 14 May 2024 11:21:01 -0700 Subject: [PATCH] Make sure the install commands have no leading spaces --- README.md | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 672893d..37de94d 100644 --- a/README.md +++ b/README.md @@ -22,28 +22,35 @@ - Make sure you have Python 3.6 (or higher) installed: - python --version - + ```sh + python --version + ``` - Setup a virtual environment: - python -m venv ot-svg - + ```sh + python -m venv ot-svg + ``` - Activate the virtual environment: - macOS & Linux - source ot-svg/bin/activate + ```sh + source ot-svg/bin/activate + ``` - Windows - ot-svg\Scripts\activate.bat + ```sh + ot-svg\Scripts\activate.bat + ``` - Install **opentypesvg**: - python -m pip install opentypesvg - + ```sh + python -m pip install opentypesvg + ``` # How to make OpenType-SVG fonts?