This guide describes how to write and submit a guide for the Linode docs. If you would like to write on a topic, please visit our Contribute page to choose a topic and submit a writing sample. When you have received an email notifying you that your topic has been accepted, you are ready to follow the steps in this guide.
All of our guides are stored in the github.com/linode/docs repository. You will need to clone this repository to your local computer.
For more information about using Git, refer to the official Git documentation. If you're a Git beginner, both GitHub and GitLab offer excellent primers to get you started.
-
On Github, navigate to the linode/docs repository. Click fork on the top right corner.
-
Clone your fork of the repository. Replace
YOUR-USERNAME
with your Github username. This example creates alinode-docs
directory:git clone https://github.com/YOUR-USERNAME/docs linode-docs
This may take a few minutes to copy all of the files and images to your machine.
-
Navigate to the project directory:
cd linode-docs
The Linode documentation library is built using Hugo, an open-source static site generator. In order to preview your guide before submission, you will need to install Hugo on your local computer.
Install a version of Hugo newer than 0.30. Earlier versions of Hugo will not render the site correctly.
On OSX, the easiest way to install Hugo is with Homebrew:
brew install hugo
Go to the Hugo releases page and download the most up to date binary for your platform. Replace each instance of v0.31.1
in this example with the newest version:
curl -OL https://github.com/gohugoio/hugo/releases/download/v0.31.1/hugo_0.31.1_Linux-64bit.tar.gz
tar -xvzf hugo_0.31.1_Linux-64bit.tar.gz
sudo mv hugo /usr/local/bin
Use Chocolatey to install Hugo on Windows:
choco install hugo -confirm
This section takes you through the process of creating a new guide using the topic of installing nginx on Debian as an example. You can use a Hugo archetype to simplify the process.
-
Checkout the develop branch:
git checkout develop
-
Update the develop branch with the latest changes. If this is the first time creating a new guide, you will have to first add the docs repository as a remote:
git remote add upstream https://github.com/linode/docs.git
Update the develop branch:
git pull upstream develop
-
Create a new branch for your guide:
git checkout -b nginx-on-debian
-
From the root of the
docs
repo, run the following command. Specify the location and title of your guide; the example nginx guide should be located inweb-servers/nginx
. This will create a markdown file populated with YAML front matter:hugo new web-servers/nginx/how-to-install-nginx-on-debian/index.md --kind content
This will create a subdirectory with the guide's intended url, with an
index.md
file inside that will hold the guide's contents. Any images should be added inside this directory as well. -
Start the Hugo server:
hugo server
This starts a local server you can use to view the Linode library in your browser on
http://localhost:1313/docs/
. -
In a web browser, navigate to the location of your new guide. The example nginx guide will be located at
http://localhost:1313/docs/web-servers/nginx/how-to-install-nginx-on-debian
.
The ci/
directory contains tests written in Python to ensure a given guide meets some of Linode's basic guidelines. Python 3.4 or newer is required to run these tests.
-
Using a virtual environment to download dependencies is highly recommended. Install a virtual environment using Anaconda/Miniconda or Virtualenv.
-
Use pip to install all the requirements:
pip install -r ci/requirements.txt
-
Run all of the tests in
ci/
:python -m pytest ci/
-
Use the
-rs
flag to display the reasons for any skipped tests:python -m pytest -rs ci/
Your local Hugo development server has hot-reloading enabled, so you will be able to view changes to your guide as you save them. Please see our Linode Writer's Formatting guide for more information.
Images should be placed in the guide's subdirectory and linked using their filename as the relative URL: ![Image Title](image.png)
.
-
Commit your changes to your local branch:
git add how-to-install-nginx-on-debian.md git commit -m "Initial draft of guide"
-
Push the local branch to your fork:
git push --set-upstream origin nginx-on-debian
-
Go to
https://github.com/linode/docs
and open a pull request.
Your guide is now submitted. Thank you for contributing to Linode! A member of the content team will review your guide and contact you if any changes are required.