daml/docs
mziolekda f645641acf
Bump ledger api version to 2.0 (#12956)
CHANGELOG_BEGIN
Ledger API version 2.0
CHANGELOG_END
2022-02-16 11:55:49 +01:00
..
configs Add new toctrees in daml docs (#12880) 2022-02-15 07:34:29 +00:00
scripts user management: add reference docs (#12398) 2022-01-20 10:32:28 +00:00
source Bump ledger api version to 2.0 (#12956) 2022-02-16 11:55:49 +01:00
theme Color and typography edits (#12609) 2022-01-26 17:35:01 -05:00
.gitignore [DPP-762][Self-service error codes] Automate generation of inventory of error categories. #11879 2021-11-26 10:22:14 +01:00
BUILD.bazel Switch docs for upgrade automation to Canton Sandbox (#12908) 2022-02-14 14:08:32 +00:00
canton-refs.rst Setup infrastructure to cross-link to Canton docs (#12824) 2022-02-09 16:21:56 +01:00
daml-intro-7.yaml Switch docs for upgrade automation to Canton Sandbox (#12908) 2022-02-14 14:08:32 +00:00
error.html update copyright headers (#12240) 2022-01-03 16:36:51 +00:00
README.md [Self-service error codes] Small fixes for docs/scripts/live-preview.sh (#11856) 2021-11-24 19:23:06 +01:00
redirect_template.html update copyright headers (#12240) 2022-01-03 16:36:51 +00:00
redirects.map Remove ResetService from the grpc documentation (#12512) 2022-01-20 16:19:04 +01:00

Daml Documentation

This directory contains all of the documentation that gets published to docs.daml.com.

Writing documentation

The docs are written in reStructuredText, built using Sphinx.

To edit documentation:

  • Same as code: find the file, edit it on a branch, make a PR.

  • For new files, best to copy existing ones, to get the formatting right.

    Don't forget you need to add your file to the toctree in /docs/source/index.rst and /docs/configs/pdf/index.rst.

  • Make sure you preview before you push.

  • Don't insert line-breaks inside inline literals. Building preview will treat this as an error.

Generated documentation

Not all of our docs are in rst files: some get generated. They are:

  • the ledger API proto docs,
  • the Daml standard library reference,
  • the Java bindings reference,
  • error codes inventory.

To edit those docs, edit the content inside the code source.

Previewing

To preview the full docs, as deployed to docs.daml.com, run scripts/preview.sh.

To live-preview the docs, run scripts/live-preview.sh. The script accepts two flags:

  • --pdf includes the PDF documentation,
  • --gen includes the generated documentation.

Note that neither PDF, nor generated docs will benefit from live updates. To update generated docs or PDF docs, quit the preview script with CTRL+C and start it again.

Style conventions

For terminology and other style questions, follow the main DA documentation style guide.

A few pieces of RST guidance:

If youre not familiar, its really worth reading the primer for the basic syntax (emphasis, code text, lists, tables, images, comments, etc).

  • Keep paragraphs all on the same line (no newlines/line breaks).

  • Heading underlines in this hierarchical order:

    ######
    ******
    ======
    ------
    ^^^^^^
    """"""
    
  • For internal links, use the doc directive where you can.

  • For bullet points (unordered lists), use - (dashes).

  • For code blocks, use the literalinclude directive if you can: it's best to source code from files that we test whether they compile.

How the docs get built

The docs get built as part of the main daml repo CI, to make sure we don't break any links or do anything else that would cause Sphinx warnings.

Publishing docs

Documentation is published automatically whenever a release is made public on Github. Note that there is a delay so you might have to wait up to an hour until the docs are published after making a release public.

Testing code in docs

TBD