Skip to content

Commit f1fd709

Browse files
authored
doc: lazy load images on resources listing page (#2493)
* Add lazy load marker to prevent hitting GitHub raw rate limit (HTTP 429) * Explain why we have the funny :lazy: marker
1 parent d71ea18 commit f1fd709

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

util/create_resources_listing.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,12 @@ def process_resource_files(out, file_list: List[Path]):
320320
# IMPORTANT:
321321
# 1. 11 chars to match the start of "image" above
322322
# 2. :class: checkered-bg to apply the checkers to transparent images
323-
out.write(f" :class: checkered-bg\n\n")
323+
out.write(f" :class: checkered-bg\n")
324+
# 3. :loading: lazy stops GitHub 429ing us ("chill pls") # pending: stop using GH raw as a CDN
325+
out.write(f" :loading: lazy\n")
326+
out.write("\n")
324327
out.write(f" {name}\n")
328+
325329
elif suffix in SUFFIX_TO_AUDIO_TYPE:
326330
file_path = FMT_URL_REF_EMBED.format(resource_path)
327331
src_type=SUFFIX_TO_AUDIO_TYPE[suffix]

0 commit comments

Comments
 (0)