-
Install Node.js
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash source ~/.bashrc
-
Install the latest LTS version of npm
nvm install v18.12.1
-
Install yarn
npm install --global yarn
-
Install dependencies
yarn
yarn start
-
To resize images, use
imagemagick
on Linuxsudo apt install imagemagick-6.q16
Resize all images in a folder
convert "*.jpg[800x]" -set filename:base "%[basename]" "%[filename:base].jpg"
-
Maintain a correct order of the headings. Use
H1
for page titles,H2
for sections andH3
for subsections. Don't jump fromH1
toH3
without anH2
in between. -
Resize the images to ideally to a width of 800px maintaining the aspect ratio.
-
Use
Code
(`Code`) blocks for text that makes direct reference to a component in the software. E.g.,Done
button. -
Use Bold (**Bold**) characters to highlight important words or phrases.
-
Use Italics (*Italics*) for names of 3rd party products and items.
-
Avoid having one single long line of text and add a newline after 120 characters.