30 lines
621 B
YAML
30 lines
621 B
YAML
version: 2
|
|
|
|
# Build instructions
|
|
build:
|
|
os: "ubuntu-22.04"
|
|
tools:
|
|
python: "3.7"
|
|
jobs:
|
|
pre_build:
|
|
- mkdir -p $READTHEDOCS_OUTPUT/pdf
|
|
- wget https://www.sbl-site.org/Fonts/SBL_grk.ttf -O $READTHEDOCS_OUTPUT/pdf/SBL_grk.ttf
|
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
|
sphinx:
|
|
configuration: content/conf.py
|
|
|
|
# Optionally build your docs in additional formats such as PDF
|
|
formats:
|
|
- epub
|
|
- htmlzip
|
|
- pdf
|
|
|
|
# Optionally set the version of Python and requirements required to build your docs
|
|
python:
|
|
install:
|
|
- requirements: docs/requirements.txt
|
|
|
|
submodules:
|
|
include: all
|