Skip to content

Commit 47460a3

Browse files
committed
chore: remove year 2026 from cv filenames
1 parent c8d2ef8 commit 47460a3

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ The pipeline separates content data from layout and design, ensuring that as new
1010
- `src/cv_template.md.j2`: The Jinja2 template dictating the layout of the Markdown file.
1111
- `src/build_cv.py`: Python script that reads the YAML data and renders the template to produce the English and Spanish Markdown files.
1212
- `generate_pdf.sh`: Main executable script. Runs the Python build and then uses Pandoc to generate the final PDFs.
13-
- `src/CV_Gustavo_Juantorena_2026.md`: Auto-generated Spanish Markdown output.
14-
- `src/english/CV_Gustavo_Juantorena_2026_EN.md`: Auto-generated English Markdown output.
13+
- `src/CV_Gustavo_Juantorena.md`: Auto-generated Spanish Markdown output.
14+
- `src/english/CV_Gustavo_Juantorena_EN.md`: Auto-generated English Markdown output.
1515
- `output/`: Directory where the final PDF files are generated.
1616

1717
## Requirements

generate_pdf.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ python3 src/build_cv.py
66
echo "🔄 Generando CVs en progreso..."
77

88
# Generar PDF clásico del CV con Pandoc (Español)
9-
pandoc src/CV_Gustavo_Juantorena_2026.md \
9+
pandoc src/CV_Gustavo_Juantorena.md \
1010
-H assets/disable_hyphens.tex \
1111
-V geometry:margin=1in \
12-
-o output/CV_Gustavo_Juantorena_2026_ES.pdf
12+
-o output/CV_Gustavo_Juantorena_ES.pdf
1313

1414
# Generar PDF clásico del CV con Pandoc (Inglés)
15-
pandoc src/english/CV_Gustavo_Juantorena_2026_EN.md \
15+
pandoc src/english/CV_Gustavo_Juantorena_EN.md \
1616
-H assets/disable_hyphens.tex \
1717
-V geometry:margin=1in \
18-
-o output/CV_Gustavo_Juantorena_2026_EN.pdf
18+
-o output/CV_Gustavo_Juantorena_EN.pdf
1919

2020
echo "✅ PDFs generados exitosamente en la carpeta 'output/':"
21-
echo " - output/CV_Gustavo_Juantorena_2026_ES.pdf"
22-
echo " - output/CV_Gustavo_Juantorena_2026_EN.pdf"
21+
echo " - output/CV_Gustavo_Juantorena_ES.pdf"
22+
echo " - output/CV_Gustavo_Juantorena_EN.pdf"
File renamed without changes.

src/build_cv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
SRC_DIR = os.path.dirname(os.path.abspath(__file__))
77
DATA_FILE = os.path.join(SRC_DIR, "cv_data.yaml")
88
TEMPLATE_FILE = "cv_template.md.j2"
9-
OUT_ES = os.path.join(SRC_DIR, "CV_Gustavo_Juantorena_2026.md")
10-
OUT_EN = os.path.join(SRC_DIR, "english", "CV_Gustavo_Juantorena_2026_EN.md")
9+
OUT_ES = os.path.join(SRC_DIR, "CV_Gustavo_Juantorena.md")
10+
OUT_EN = os.path.join(SRC_DIR, "english", "CV_Gustavo_Juantorena_EN.md")
1111

1212
def build_cvs():
1313
# Load YAML data
File renamed without changes.

0 commit comments

Comments
 (0)