forked from py-pdf/fpdf2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
101 lines (101 loc) · 3.98 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
###
# MkDocs Configuration File.
#
# To build these docs, change to base of repository and run `mkdocs build` and
# docs will be build into site_dir variable value in this file.
#
# Alternatively, there is a script in the `scripts` folder for convenience.
###
site_name: fpdf2
site_url: https://pyfpdf.github.io/fpdf2/
repo_url: https://github.com/PyFPDF/fpdf2
site_description: fpdf2 - minimalist PDF creation library for Python
docs_dir: docs/
site_dir: public/
use_directory_urls: false
edit_uri: edit/master/docs
theme:
name: material
custom_dir: docs/overrides/
markdown_extensions: [toc, pymdownx.highlight, pymdownx.superfences]
plugins:
- include-markdown
- search
- with-pdf: # https://github.com/orzih/mkdocs-with-pdf
output_path: fpdf2-manual.pdf
cover_title: fpdf2 manual
cover_subtitle: A minimalist PDF creation library for Python
author: ' '
copyright: ' '
#cover: false
#back_cover: true
#custom_template_path: TEMPLATES PATH
#toc_title: TOC TITLE TEXT
#heading_shift: false
#toc_level: 3
#ordered_chapter_level: 2
#excludes_children:
# - 'release-notes/:upgrading'
#exclude_pages:
# - 'appendix/contribute/'
#convert_iframe:
# - src: IFRAME SRC
# img: POSTER IMAGE URL
# text: ALTERNATE TEXT
#two_columns_level: 3
#render_js: true
#headless_chrome_path: headless-chromium
#enabled_if_env: ENABLE_PDF_EXPORT
#debug_html: true
#show_anchors: true
#verbose: true
nav:
- 'Project Home': 'index.md'
- 'Tutorial':
- 'Tutorial in english': 'Tutorial.md'
- 'Tutorial auf Deutsch': 'Tutorial-de.md'
- 'Tutorial en español': 'Tutorial-es.md'
- 'Tutorial en français': 'Tutorial-fr.md'
- 'Tutorial in italiano': 'Tutorial-it.md'
- 'Tutorial em português': 'Tutorial-pt.md'
- 'Учебник на русском языке': 'Tutorial-ru.md'
- 'हिंदी में ट्यूटोरियल': 'Tutorial-हिंदी.md'
- 'Page Layout':
- 'Page Format and Orientation': 'PageFormatAndOrientation.md'
- 'Margins': 'Margins.md'
- 'Templates': 'Templates.md'
- 'Tables': 'Tables.md'
- 'Text Content':
- 'Adding Text': 'Text.md'
- 'Line breaks': 'LineBreaks.md'
- 'Page breaks': 'PageBreaks.md'
- 'Text styling': 'TextStyling.md'
- 'Unicode': 'Unicode.md'
- 'Emojis, Symbols & Dingbats': 'EmojisSymbolsDingbats.md'
- 'HTML': 'HTML.md'
- 'Graphics Content':
- 'Images': 'Images.md'
- 'Shapes': 'Shapes.md'
- 'Transparency': 'Transparency.md'
- 'Barcodes': 'Barcodes.md'
- 'Drawing': 'Drawing.md'
- 'SVG': 'SVG.md'
- 'Charts & Graphs': 'Maths.md'
- 'PDF Features':
- 'Links': 'Links.md'
- 'Metadata': 'Metadata.md'
- 'Annotations': 'Annotations.md'
- 'Presentation Mode': 'Presentations.md'
- 'Document outline & table of contents': 'DocumentOutlineAndTableOfContents.md'
- 'Signing': 'Signing.md'
- 'File attachments': 'FileAttachments.md'
- 'Mixing other libs':
- 'Existing PDFs': 'ExistingPDFs.md'
- 'Usage in web APIs': 'UsageInWebAPI.md'
- 'Database storage': 'DatabaseStorage.md'
- 'borb': 'borb.md'
- 'Development':
- 'Development Guidelines': 'Development.md'
- 'Logging': 'Logging.md'
- 'API': 'https://pyfpdf.github.io/fpdf2/fpdf/'
- 'FAQ': 'FAQ.md'