Koha Documentation repository
Find a file
2024-09-17 17:16:49 -04:00
icons Delete mostcirculateditems.PNG 2023-08-25 11:46:36 +01:00
public Getting rid of the en/ dir, a relic from the docxml days 2017-11-29 20:57:16 +13:00
source Corrected formatting and reference errors 2024-09-17 17:16:49 -04:00
.gitignore Ignore .idea and .vscode 2024-08-14 10:51:11 +02:00
.gitlab-ci.yml Weblate migration - Generate English version only (from gitlab-ci) 2023-10-26 14:34:30 +02:00
.mailmap Add .mailmap 2024-04-23 10:43:34 +02:00
CONTRIBUTING.md Fix #10 - update url to the new repository 2018-05-24 15:33:58 -03:00
LICENSE Add license 2016-11-20 20:20:27 +00:00
Makefile Add the quiet switch to SPHINXOPTS 2019-11-14 17:16:10 +00:00
mappings.pl Add a script to ease the move - mappings.pl 2017-08-14 16:40:55 -03:00
README.md Update README.md, link was wrong. 2023-11-10 03:25:21 +00:00

Koha Documentation

This is the main repository for the Koha manual.
It is mirrored at git.koha-community.org.

The manual is generated with Sphinx.

Setup

sudo apt-get install make python3-sphinx python3-sphinxcontrib.spelling python3-pip

sudo pip3 install sphinx_rtd_theme

Outputing Docs

For HTML

make html

For HTML in a single page

make singlehtml

For an epub

make epub

For a pdf (Work in progress)

Install latexmk, the latexpdf builder needs it

apt install latexmk

Install texlive-full. Attention: this is very huge

apt install texlive-full

Generate the latex files

make latex

Generate the PDF file

make latexpdf

Other useful commands

To find everything that you can do, you can just do

make

And it will list all the available options. Some useful ones are

Check spelling

make spelling

make linkcheck

Generate .po files for translation

Have a look at the koha-manual-i18n project.