How to contribute

Welcome to jaxplore.com—a Zola-based site! Contributions for the resources and notes sections are very welcome, whether you’re adding new content or improving existing materials.


No Technical Expertise Required


  • Basic markdown knowledge sufficient
  • No Zola-specific skills needed

Repository and Content Location


Steps to Contribute

  1. Fork the Repository
    Start by forking the https://github.com/dorjeduck/jaxplore.com to your account.

  2. Clone Your Fork
    Clone the forked repository to your local machine:

    git clone https://github.com/dorjeduck/jaxplore.com
    cd jaxplore.com
    

  3. Create a New Branch
    Create a branch to work on your changes:

    git checkout -b my-new-branch
    

  4. Edit or Add Content

    • Use existing Markdown files as templates for new content.
    • Edit or replace the content as needed.
    • Save your file in the appropriate folder

  5. Commit Your Changes
    Save your work by committing the changes:

    git add .
    git commit -m "Add/Edit content for [brief description]"
    

  6. Push Changes
    Push your branch to your forked repository:

    git push origin my-new-branch
    

  7. Submit a Pull Request

    • Open a pull request (PR) from your forked repository to the original repository.
    • Include a brief description of your contribution in the PR message.

Thank you for contributing!