Add static map workaround for blog
This commit is contained in:
parent
04bbfb09a5
commit
c3ed54b838
4 changed files with 26 additions and 1 deletions
18
tools/move-map-to-blog.py
Normal file
18
tools/move-map-to-blog.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python3
|
||||
# Simply move the map.png file to the blog output dir
|
||||
# since it won't do so automatically for pillow creations.
|
||||
|
||||
import shutil
|
||||
import os
|
||||
import sys
|
||||
|
||||
if not os.getenv("QUARTO_PROJECT_RENDER_ALL"):
|
||||
sys.exit(0)
|
||||
|
||||
q_output_dir = os.getenv("QUARTO_PROJECT_OUTPUT_DIR")
|
||||
if not q_output_dir:
|
||||
sys.exit(1)
|
||||
|
||||
src = "map.png"
|
||||
|
||||
shutil.copy(src, q_output_dir)
|
||||
Loading…
Add table
Add a link
Reference in a new issue