Thank you for contributing to our notes and resources repository! This document provides guidelines to ensure consistency across the repository.
When adding images to your markdown files, please follow these guidelines:
- Place your images in the appropriate directory under
assets/images/. - When referencing images in markdown files, always include the
/notesprefix in the path.
Correct Image Reference:
<img src="{{ '/assets/images/your-path/image.png' | relative_url }}" alt="Image Description" width="80%">Incorrect Image Reference:
This is necessary because the site is configured with a baseurl of /notes in the _config.yml file. Without this prefix, images will not display correctly when the site is deployed.
To build and test the site locally:
bundle install
bundle exec jekyll serveVisit http://localhost:4000/notes/ to view the site.
- Fork the repository
- Create a new branch for your changes
- Make your changes
- Test your changes locally
- Submit a pull request
Thank you for helping improve our documentation!