Skip to content

Commit df1ced1

Browse files
committed
move to a slightly newer pandoc?
1 parent b73c2d4 commit df1ced1

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

Aptfile

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ pandoc
22
texlive-latex-base
33
texlive-latex-recommended
44
texlive-fonts-recommended
5+
texlive-plain-generic
56
lmodern

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9-bullseye
1+
FROM python:3.9-bookworm
22
ENV PYTHONUNBUFFERED=1
33
ENV PYTHONDONTWRITEBYTECODE=1
44

@@ -20,6 +20,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
2020
texlive-latex-base \
2121
texlive-latex-recommended \
2222
texlive-fonts-recommended \
23+
texlive-plain-generic \
2324
lmodern
2425

2526
RUN mkdir /code

base-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ django-extensions==3.1.4
5151
django-import-export==2.7.1
5252

5353
pypandoc==1.12
54-
panflute==1.12
54+
panflute==2.3.0

sponsors/contracts.py

+10-6
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ def _contract_context(contract, **context):
3535
return context
3636

3737

38+
def render_markdown_from_template(contract, **context):
39+
template = "sponsors/admin/contracts/sponsorship-agreement.md"
40+
context = _contract_context(contract, **context)
41+
return render_to_string(template, context)
42+
43+
3844
def render_contract_to_pdf_response(request, contract, **context):
3945
response = HttpResponse(
4046
render_contract_to_pdf_file(contract, **context), content_type="application/pdf"
@@ -45,9 +51,9 @@ def render_contract_to_pdf_response(request, contract, **context):
4551
def render_contract_to_pdf_file(contract, **context):
4652
with tempfile.NamedTemporaryFile() as docx_file:
4753
with tempfile.NamedTemporaryFile(suffix=".pdf") as pdf_file:
48-
docx_file.write(render_contract_to_docx_file(contract, **context))
49-
pdf = pypandoc.convert_file(
50-
docx_file.name, "pdf", outputfile=pdf_file.name, format="docx"
54+
markdown = render_markdown_from_template(contract, **context)
55+
pdf = pypandoc.convert_text(
56+
markdown, "pdf", outputfile=pdf_file.name, format="md"
5157
)
5258
return pdf_file.read()
5359

@@ -64,10 +70,8 @@ def render_contract_to_docx_response(request, contract, **context):
6470

6571

6672
def render_contract_to_docx_file(contract, **context):
67-
template = "sponsors/admin/contracts/sponsorship-agreement.md"
6873
reference = "sponsors/admin/contracts/reference.docx"
69-
context = _contract_context(contract, **context)
70-
markdown = render_to_string(template, context)
74+
markdown = render_markdown_from_template(contract, **context)
7175
with tempfile.NamedTemporaryFile() as docx_file:
7276
docx = pypandoc.convert_text(
7377
markdown,

0 commit comments

Comments
 (0)