Contributions are welcome! To get started, follow these steps:
- Fork the repository on GitHub.
- Clone your forked repository to your local machine:
git clone https://github.com/JeelGajera/jspdf-md-renderer cd jspdf-md-renderer
- Install dependencies:
npm i
- Run the project locally:
npm run dev
- Format the code using Prettier:
npm run format
- Lint the code using ESLint:
npm run lint
- Create a new branch for your feature or bugfix:
git checkout -b feature-or-bugfix-name
- Make your changes and commit them:
git add . git commit -m "Description of your changes"
- Push your changes to your forked repository:
git push origin feature-or-bugfix-name
- Create a pull request on GitHub from your forked repository to the main repository.
Please ensure your code adheres to the project's coding standards and passes all checks before submitting a pull request.
Thank you for contributing!