Koha Documentation repository
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
Caroline Cyr La Rose d7cc3436d7 CSS changes to improve colour contrast hace 2 semanas
icons Delete mostcirculateditems.PNG hace 9 meses
public Getting rid of the en/ dir, a relic from the docxml days hace 7 años
source CSS changes to improve colour contrast hace 2 semanas
.gitignore Weblate migration - Add locales to .gitignore hace 7 meses
.gitlab-ci.yml Weblate migration - Generate English version only (from gitlab-ci) hace 7 meses
.mailmap Add .mailmap hace 3 semanas
CONTRIBUTING.md Fix #10 - update url to the new repository hace 6 años
LICENSE Add license hace 8 años
Makefile Add the quiet switch to SPHINXOPTS hace 5 años
README.md Update README.md, link was wrong. hace 6 meses
mappings.pl Add a script to ease the move - mappings.pl hace 7 años

README.md

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.