Skip to content

andreaslyn/concordium.github.io

 
 

Repository files navigation

Concordium Documentation

Contributor Covenant

Before contributing please read and follow the principles outlined in

The documentation is written in reStructuredText (Link to the basics).

For building the documentation we use Sphinx and the theme from ReadTheDocs with minor design tweaks.

Sphinx supplies a number of useful "directives" (The sphinx equivalent of LaTeX commands) for stuff like code highlighting, remarks, warnings and so on.

Additionally, we have enabled the extension for todo directives

.. todo::

   Write a todo here

To show TODOs as warnings when building the docs you need to uncomment the following line in /source/testnet/conf.py and/or /source/mainnet/conf.py:

# todo_emit_warnings = True

NB: This will only show TODOs for the files being built; as opposed to TODOs from all files.

To generate SVG graphics, we use the Graphviz extension.

Development

All of the documentation lives in the source directory, here there are subdirectories for Mainnet and Testnet, and a subdirectory shared for content which can be shared between the two.

The way to have shared content, is to make a file in both mainnet and testnet, which includes the shared content using the include directive.

.. include:: /../shared/path/to/file.rst

Installation

Linux

Install python3 and the python package manager pip3.

To install the python dependencies run:

pip3 install -r requirements.txt

Install graphviz:

  • Ubuntu: sudo apt install graphviz

macOS

On macOS

brew install python3 graphviz
pip3 install -r requirements.txt

Windows

Install python3 and select a python installer, e.g. this one. Download and run the launcher. Make sure to select "Add Python to PATH" at the bottom before proceeding with the install.

After that from a terminal run

pip3 install -r requirements.txt

from the root of this repository.

If you want the graphs to render properly you also need to install the dot tool, which is part of the graphviz package.

Development

To watch the doc files and automate the build run:

macOS and Linux

Mainnet

make dev-mainnet

and navigate to localhost:8000/mainnet.

Testnet

make dev-testnet

and navigate to localhost:8000/testnet.

Before committing, make sure to run the linter and fix all the errors reported:

make lint

Windows

Mainnet

make.bat dev-mainnet

and navigate to localhost:8000/mainnet.

Testnet

make.bat dev-testnet

and navigate to localhost:8000/testnet.

Before committing, make sure to try to build and fix any warnings that are reported.

./make.bat html

Note: When working on changes to the design it can be benefitial to disable caching, as it can cause UI problems. To disable it, add the -E flag to the dev command in the appropriate make file.

Building the docs

Run the build script from project root:

./script/build.sh

To check for dead links (can also be done by the CI), run:

make linkcheck-mainnet

or

make linkcheck-testnet

Contributing

The source/testnet directory is used for documentation for future releases, and documentation for new features should be done here.

The source/mainnet directory contains documentation for the current Mainnet, and should always be compatible with the current Mainnet.

Style guide

Language

  • For a user guide, prefer second person and imperative ("click on X").
  • Keep sentences short.
  • Prefer present continuous ("is") over future ("will be").
  • Prefer active voice ("the baker adds a block") over passive voice ("a block is added").

Formatting

Headers

Use sentence-style capitalization, i.e., only capitalize the first letter of a header.

Be consistent in the use of characters for creating headers; use the following for each level of header:

========
Header 1
========

Header 2
========

Header 3
--------

Header 4
^^^^^^^^

Header 5
~~~~~~~~

Terminal commands

Use code-block:: console to show content from a terminal and prepend commands with $ without a space in between.

A space is added between $ and the command through CSS. This solution makes only the command itself copyable, thereby improving the user-experience.

Example:

.. code-block:: console

   $echo Hello, world!
   Hello, world!

Buttons and clickable elements

Use bold to highlight keyboard buttons and clickable elements (e.g., "Press Enter", "Select Next").

Emphasis

  • Use italics for text emphasis (e.g., when introducing a new term: "Obtain an identity from an identity provider.").
  • After the term is introduced avoid emphasising it again in the same text.

Code formatting for this repository

Indentation

Use three spaces for indentation. This aligns the directive name (note::) with the content of the directive (This line...).

Add an empty line between a directive and its content.

Example that follows both rules:

.. note::

   This line has three spaces in front of it and it has an empty line above it.

Variables

Use variables when it makes sense.

Add new variables in the file source/variables.rst.

Use the variables by:

  • Including a relative path to variables.rst, for example ../../variables.rst.
  • Then using the variable net, for example |Net|.

License

This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

CC BY-SA 4.0

About

Concordium Developer Documentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 47.6%
  • HTML 41.5%
  • Shell 3.4%
  • CSS 3.2%
  • Batchfile 2.7%
  • Makefile 1.6%