1
Fork 0

Allow escaping markdown from external data

This commit is contained in:
Jake Howard 2023-09-17 20:13:45 +01:00
parent c826bda91b
commit 4d36f4f1e3
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 14 additions and 2 deletions

View File

@ -5,6 +5,6 @@ redirects:
# Sibling
{% set this_image = unsplash("MU8w72PzRow") %}
{% set this_image = unsplash("yCdPU73kGSc") %}
![{{ this_image.description|default("", true) }}]({{ this_image.urls.regular }})
![{{ this_image.description|default("", true)|escape_markdown }}]({{ this_image.urls.regular }})

View File

@ -3,14 +3,26 @@ from datetime import timedelta
import os
import json
import jinja2
import re
UNSPLASH_CACHE_TIME = timedelta(days=14)
MD_ESCAPE_CHARS = r"\_*[]()~`>#+-=|{}.!"
MD_ESCAPE_RE = re.compile(f"([{re.escape(MD_ESCAPE_CHARS)}])")
def get_unsplash_image(image_id):
client_id = os.environ["UNSPLASH_CLIENT_ID"]
url = f"https://api.unsplash.com/photos/{image_id}?client_id={client_id}"
return json.loads(download_and_cache_url(url, UNSPLASH_CACHE_TIME))
def escape_markdown(value):
return MD_ESCAPE_RE.sub(r"\\\1", value)
def on_env(env: jinja2.Environment, config, files):
env.globals["unsplash"] = get_unsplash_image
env.filters["escape_markdown"] = escape_markdown
return env