Skip to content

EPFLiGHT/LiGHT-doc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

How to contribute to LiGHT docs

Guidelines

To contribute, you can suggest changes and open pull requests at our GitHub repo

LiGHT-doc uses mkdocs. mkdocs is a tool that automatically build documentation from markdown files.

For full documentation visit mkdocs.org.

Project layout

mkdocs.yml    # The configuration file.
docs/
    index.md  # The documentation homepage.
    ...       # Other markdown pages, images and other files.

Every markdown files are written in the docs directory.

Workflow

  • Update your relevant files in the docs folder

  • Test your local changes by running

mkdocs serve

and accessing localhost:8000 on your browser

  • Push your changes to some branch
git checkout -b [branch name]
git add [files]
git commit -m [Commit message]
git push