From a3e7b1e0c8c0b718eda3368cee55a612df013db2 Mon Sep 17 00:00:00 2001 From: Liam Davis Date: Sat, 24 May 2025 22:58:45 +0000 Subject: [PATCH 1/2] Fixed quickstart styling in README --- .gitpod.yml | 10 ++++++++++ PYPI_README.md | 4 ++-- README.md | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..63a3e4f --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,10 @@ +# This configuration file was automatically generated by Gitpod. +# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) +# and commit this file to your remote git repository to share the goodness with others. + +# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart + +tasks: + - init: make + + diff --git a/PYPI_README.md b/PYPI_README.md index dfb9f91..dbe23b2 100644 --- a/PYPI_README.md +++ b/PYPI_README.md @@ -73,7 +73,7 @@ box.plot() ``` Histogram -``` +```python from MatPlus import Histogram import numpy as np @@ -83,7 +83,7 @@ hist.plot() ``` Stem Plot -``` +```python from MatPlus import StemPlot import numpy as np diff --git a/README.md b/README.md index cdd2b35..9c9e676 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ box.plot() ``` Histogram -``` +```python from MatPlus import Histogram import numpy as np @@ -83,7 +83,7 @@ hist.plot() ``` Stem Plot -``` +```python from MatPlus import StemPlot import numpy as np From 67ba786665a7037571bd539d74b89a7d37651da5 Mon Sep 17 00:00:00 2001 From: Liam Davis Date: Sat, 24 May 2025 23:00:46 +0000 Subject: [PATCH 2/2] Remove gitpod.yml --- .gitpod.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 63a3e4f..0000000 --- a/.gitpod.yml +++ /dev/null @@ -1,10 +0,0 @@ -# This configuration file was automatically generated by Gitpod. -# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) -# and commit this file to your remote git repository to share the goodness with others. - -# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart - -tasks: - - init: make - -