Contribute to Neurodesk.org
This applies if you wish to submit a new tutorial or amend content on a page. Our website is mostly written in Markdown (.md files). We include the basics of writing in Markdown on this page.
Table of contents
Section titled “Table of contents”- Create your own copy of neurodesk/neurodesk.github.io repository
- Create your content or make your modifications
- Contribute your new content to the official documentation
- Formatting guidelines
- Code blocks
- Images
- Alerts and warnings
- Tables
- Lists
Create your own copy of neurodesk/neurodesk.github.io repository where you will be able to make modifications
Section titled “Create your own copy of neurodesk/neurodesk.github.io repository where you will be able to make modifications”Begin by creating a copy of our documentation that you can edit:
- Visit the GitHub repository for the Neurodesk documentation.
- Fork the repository.



Create your content or make your modifications
Section titled “Create your content or make your modifications”- Clone your forked version of our documentation to a location of your choice on your computer.
This step is the same for macOS, Windows, and Linux.
Using SSH
Section titled “Using SSH”git clone --recurse-submodules git@github.com:neurodesk/neurodesk.github.io.gitUsing HTTPS
Section titled “Using HTTPS”git clone --recurse-submodules https://github.com/neurodesk/neurodesk.github.io.gitIf you cloned without —recurse-submodules
Section titled “If you cloned without —recurse-submodules”Run the following command to pull submodules:
git submodule update --init --recursive --remoteThe URL for the repository can be copied by clicking on the button highlighted below:

-
Now, you can open your copy of
neurodesk.github.iousing the editor of your choice (we recommend VS Code). Before making changes to the current repository, the best practice is to create a new branch to avoid version conflicts.-
Create a branch:
Terminal window git branch tutorial-template -
Check out the branch you want to use for the addition or changes you’d like to make:
Terminal window git checkout tutorial-template -
Confirm you are in the right branch:
Terminal window git branch

-
-
Within your cloned environment, navigate to where you’d like to make your changes.
For example, if you’d like to create new tutorial content, go to
neurodesk.github.io/content/en/tutorials-examples/tutorials/and then navigate to the subfolder you believe your tutorial belongs in (e.g./functional_imaging). -
Create a new, appropriately named Markdown file to house your content (e.g. for a tutorial about physiology, you might call it
physio.md). Images need to be stored in the/staticdirectory. Please mirror the same directory structure as for your Markdown files. -
Open this file and populate it with your content. You’re also welcome to look at other tutorials already documented on our website for inspiration.
Contribute your new content to the official documentation
Section titled “Contribute your new content to the official documentation”-
Once you are happy with your content, to avoid merge conflicts, rebase your branch with the main branch, which should be synced with neurodesk/neurodesk.github.io:main (on GitHub check if your repo is synced and locally checkout the main branch and run
git pull).Terminal window git rebase mainYou might have to correct some merge conflicts, but VS Code makes it easy.
-
Commit all your changes and push these local commits to GitHub.
-
Navigate to your forked version of the repository on GitHub and switch branches for the one with your additions.

-
Now, you can preview the changes before contributing them upstream. For this, if this is your first time to run the Action build, click on the “Actions” tab and enable the Actions (“I understand my tutorials…”). You can run the workflow by clicking on each of them in the left sidebar.

-
Then you need to open the settings of the repository and check that Pages points to
gh-pages, and when clicking on the link, the site should be there. -
To contribute your changes, click “Compare & pull request” and then “Create pull request”.

-
Give your pull request a title (e.g. “Document PhysIO tutorial”), leave a comment briefly describing what you have done, and then create the pull request.
-
Someone from the Neurodesk team will review and accept your changes, which will appear on our website soon.
Thanks so much for taking the time to contribute content to the Neurodesk community. If you have any feedback on the process, please let us know on GitHub discussions.
Formatting guidelines
Section titled “Formatting guidelines”As seen throughout this tutorial, you can embellish your text using Markdown conventions; text can be bold, italic, or strikethrough. You can also add links, and you can organise your content with headers, starting at level 2 (the page title is a level 1 header):
Level 2 heading
Section titled “Level 2 heading”You can also include progressively smaller subheadings:
Level 3 heading
Section titled “Level 3 heading”Some more detailed information.
Level 4 heading
Section titled “Level 4 heading”Even more detailed information.
Code blocks
Section titled “Code blocks”You can add code blocks to your content as follows:
# Some example codeimport numpy as npa = np.array([1, 2])b = np.array([3, 4])print(a+b)Or add syntax highlighting to your code blocks:
# Some example codeimport numpy as npa = np.array([1, 2])b = np.array([3, 4])print(a+b)Advanced code or command line formatting:
# Some example codeimport numpy as npa = np.array([1, 2])b = np.array([3, 4])print(a+b)[4 6]You can also add code snippets, e.g. var foo = "bar";, which will be shown inline.
Images
Section titled “Images”To add screenshots and images to your content, create a subfolder in /static with the same file structure as in your content Markdown file. Add your screenshot to this folder, keeping in mind that you may want to adjust your screenshot to a reasonable size before uploading. You can then embed these images in your tutorial using the following convention:
For a filename.png in a /content/en/tutorials-examples/subject/tutorial1/markdownfile.md use:
For example, EEGtut1.png in /content/en/tutorials-examples/tutorials/electrophysiology/eeg_mne-python.md would be:
Alerts and warnings
Section titled “Alerts and warnings”You can grab the reader’s attention to particularly important information with quote blocks, alerts, and warnings:
This is a quote block.
You can also segment information as follows:
There’s a horizontal rule above and below this.
Or add page information:
Tables
Section titled “Tables”You may want to order information in a table as follows:
| Neuroscientist | Notable work | Lifetime |
|---|---|---|
| Santiago Ramón y Cajal | Investigations on microscopic structure of the brain | 1852, 1934 |
| Rita Levi-Montalcini | Discovery of nerve growth factor (NGF) | 1909, 2012 |
| Anne Treisman | Feature integration theory of attention | 1935, 2018 |
You may want to organise information in a list as follows.
Here is an unordered list:
- Rstudio
- JASP
- SPSS
And an ordered list:
- Collect data
- Try to install analysis software
- Cry a little
And an unordered task list:
- Install Neurodesktop
- Analyse data
- Take a vacation
And a “mixed” task list:
- writing
- ?
- more writing probably
And a nested list:
- EEG file extensions
.eeg,.vhdr,.vmrk.edf.bdf.set,.fdt.smr
- MEG file extensions
.ds.fif.sqd.raw.kdf
Need help?
Section titled “Need help?”If you have questions or would like feedback before submitting:
- Open a discussion
We appreciate your contribution to the Neurodesk community and reproducible science.