This pull request fixes the incorrect opening of a code snippet in the markdown documentation.
Related Issue
Fixes #6
Changes Made
chore: remove problematic files for Windows users. This is explained in the next section.
fix: Fixed the incorrect markdown code snippet opening in the Chapter04_GoLang.mdx files.
Additional Commit Context
As a Windows user myself, I encountered an issue while trying to commit the fix for the markdown issue. Specifically, I discovered that certain files (public/es/gentleman-programming-book-es.pdf:Zone.Identifier and public/gentleman-programming-book.pdf:Zone.Identifier) contain colons (":") in their names, which are invalid characters for Windows filesystems. This made it impossible for me to proceed with the commit without first removing these files from the repository.
In Windows, characters like colons are not supported in file names, leading to conflicts with Git operations. Therefore, removing these files is essential to enable contributions from Windows environments where such filenames are incompatible.
Additionally, these deleted files are metadata associated with the related PDF files, likely unintentionally left behind when the PDFs were downloaded. This metadata, represented by the Zone.Identifier, indicates the origin of the file and is not necessary for the proper functioning of the project.
Description
This pull request fixes the incorrect opening of a code snippet in the markdown documentation.
Related Issue
Fixes #6
Changes Made
Chapter04_GoLang.mdx
files.Additional Commit Context
As a Windows user myself, I encountered an issue while trying to commit the fix for the markdown issue. Specifically, I discovered that certain files (
public/es/gentleman-programming-book-es.pdf:Zone.Identifier
andpublic/gentleman-programming-book.pdf:Zone.Identifier
) contain colons (":") in their names, which are invalid characters for Windows filesystems. This made it impossible for me to proceed with the commit without first removing these files from the repository.In Windows, characters like colons are not supported in file names, leading to conflicts with Git operations. Therefore, removing these files is essential to enable contributions from Windows environments where such filenames are incompatible.
Additionally, these deleted files are metadata associated with the related PDF files, likely unintentionally left behind when the PDFs were downloaded. This metadata, represented by the
Zone.Identifier
, indicates the origin of the file and is not necessary for the proper functioning of the project.