From 31991bc37efde80ad2757534dced456e565a9bda Mon Sep 17 00:00:00 2001
From: Santiago Soler <santisoler@fastmail.com>
Date: Sun, 14 Jul 2024 09:31:03 -0700
Subject: [PATCH] Minor Markdown improvement on packaging page

Apply some minor improvements to the Markdown syntax in the pages
instruction on how to create the `pyproject.toml` file.
---
 .../pyproject-toml-python-package-metadata.md             | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/package-structure-code/pyproject-toml-python-package-metadata.md b/package-structure-code/pyproject-toml-python-package-metadata.md
index 7cd25a615..c5b239c99 100644
--- a/package-structure-code/pyproject-toml-python-package-metadata.md
+++ b/package-structure-code/pyproject-toml-python-package-metadata.md
@@ -139,12 +139,12 @@ When you create your `pyproject.toml` file, there are numerous metadata fields t
 
 [An overview of all of the project metadata elements can be found here.](https://packaging.python.org/en/latest/specifications/core-metadata/#project-url-multiple-use)
 
-### Required fields for the [project] table
+### Required fields for the `[project]` table
 
-As mentioned above, your pyproject.toml file needs to have a **name** and **version** field in order to properly build your package:
+As mentioned above, your `pyproject.toml` file needs to have a **`name`** and **`version`** field in order to properly build your package:
 
-- Name: This is the name of your project provided as a string
-- Version: This is the version of your project. If you are using a scm tool for versioning (using git tags to determine versions), then the version may be dynamic (more on that below).
+- `name`: This is the name of your project provided as a string
+- `version`: This is the version of your project. If you are using a SCM tool for versioning (using git tags to determine versions), then the version may be dynamic (more on that below).
 
 ### Optional fields to include in the `[project]` table