|
9 | 9 | # - Font: DejaVu Sans (for compatibility) |
10 | 10 | # - Colors: OBP Green (#1BA563), Dark Green (#0A281E), Light Green (#5F8E82) |
11 | 11 |
|
12 | | -set -e |
| 12 | +# Note: Not using 'set -e' to allow batch processing to continue on errors |
13 | 13 |
|
14 | 14 | # Check if pandoc is installed |
15 | 15 | if ! command -v pandoc &> /dev/null; then |
@@ -46,7 +46,7 @@ LATEX_HEADER=$(cat <<'EOF' |
46 | 46 | \fancyhf{} |
47 | 47 | \fancyhead[L]{\textcolor{OBPDarkGreen}{\small\leftmark}} |
48 | 48 | \fancyhead[R]{\textcolor{OBPDarkGreen}{\small\thepage}} |
49 | | -\fancyfoot[C]{\textcolor{OBPLightGreen}{\footnotesize Copyright © TESOBE GmbH 2025}} |
| 49 | +\fancyfoot[C]{\textcolor{OBPLightGreen}{\tiny Copyright © TESOBE GmbH 2025, License: AGPLv3}} |
50 | 50 | \renewcommand{\headrulewidth}{0.5pt} |
51 | 51 | \renewcommand{\footrulewidth}{0.5pt} |
52 | 52 | \renewcommand{\headrule}{\hbox to\headwidth{\color{OBPGreen}\leaders\hrule height \headrulewidth\hfill}} |
@@ -105,7 +105,7 @@ generate_pdf() { |
105 | 105 | -V toccolor="[HTML]{$OBP_DARK_GREEN}" \ |
106 | 106 | -V header-includes="$LATEX_HEADER" \ |
107 | 107 | --metadata title="$DOC_TITLE" \ |
108 | | - --metadata author="Open Bank Project / TESOBE GmbH" \ |
| 108 | + --metadata author="TESOBE GmbH" \ |
109 | 109 | --metadata date="$(date +%Y-%m-%d)" \ |
110 | 110 | 2>&1 | grep -v "^$" || true |
111 | 111 |
|
@@ -175,7 +175,7 @@ if [ $# -eq 0 ]; then |
175 | 175 | fi |
176 | 176 |
|
177 | 177 | echo "PDF styling:" |
178 | | - echo " - Font: DejaVu Sans (professional, compatible)" |
| 178 | + echo " - Font: DejaVu Sans" |
179 | 179 | echo " - Colors: OBP brand palette" |
180 | 180 | echo " * Links: OBP Green (#$OBP_GREEN)" |
181 | 181 | echo " * Headers: Dark Green (#$OBP_DARK_GREEN)" |
|
0 commit comments