Contributing to the Kei Truck, Van, and Car Manuals Project

Thank you for your interest in contributing! This project aims to recreate translated manuals for Kei vehicles as clean, accessible, web-based pages. Every contribution helps improve access to these resources for everyone world-wide.

We welcome contributions in the following areas:


πŸ› οΈ 1. Adding or Translating Manuals

You can contribute full or partial manuals in Markdown (.md) format.

πŸ“ File Structure

Each manual is organized by:

manuals/Brand/Model/Year/Chassis/Manual-Section.md

Example:

manuals/Subaru/Sambar/2009/GBD-TT2/engine.md

Each manual has its own /assets/ folder for manual-specific assets. Generic shared assets can be stored in the root /assets/ folder.

Example:

/assets/                                      # Shared asset directory
│── images/
β”‚   β”œβ”€β”€ /brand-logos                          # Contains logos for all brands
β”‚   β”‚   β”œβ”€β”€ subaru.svg                        # Example generic logo for Subaru
/manuals/                                     # Root manual directory
│── Subaru/                                   # Car brand
β”‚   β”œβ”€β”€ Sambar/                               # Car model
β”‚   β”‚   β”œβ”€β”€ 2009/                             # Year
β”‚   β”‚   β”‚   β”œβ”€β”€ GBD-TT2/                      # Chassis code
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ index.md                  # Lists all sections in GBD-TT2
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ engine.md
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ transmission.md
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ electrical.md
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ chassis.md
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ assets/                   # Manual-specific assets folder
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ images/
β”‚   β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ example-image.PNG # Example manual-specific image file.
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ styles/
β”‚   β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ subaru.css        # Example manual-specific .css file.

Each section file must include this YAML front matter at the top with the relevant metadata:

---
layout: manual
title: "Engine Section"
brand: "Subaru"
model: "Sambar"
year: "2009"
chassis: "GBD-TT2"
---

✍️ Content Guidelines

πŸ§ͺ 2. Reviewing Existing Content

Help us improve accuracy and readability by:

πŸ§‘β€πŸ’» 3. Enhancing the Site

You can also contribute by improving the Jekyll website itself:

πŸ“¦ 4. How to Contribute

πŸ” Fork the Repository

  1. Click β€œFork” on the main GitHub page.

  2. Clone your fork:
    git clone https://github.com/your-username/Kei-Truck-Van-and-Car-Manuals.git
    cd Kei-Truck-Van-and-Car-Manuals
    
  3. 🌱 Create a New Branch
    git checkout -b add-sambar-tt2-engine
    
  4. ✏️ Make Your Changes Add or edit files, following the structure and style guidelines above.

  5. βœ… Commit and Push
    git add .
    git commit -m "Add 2009 Subaru Sambar GBD-TT2 Engine section"
    git push origin add-sambar-tt2-engine
    
  6. πŸš€ Create a Pull Request Submit a PR to the main branch with a clear description of your changes or contributions.

πŸ“œ License and Credits

By submitting content, you confirm that you:

Thank you for helping make this project possible!

β€” Kei Docs Team