this-week-in-rust
this-week-in-rust copied to clipboard
Email publishing codegen script is not formatting correctly
The Pelican publishing script used by the Makefile command optimize-email
is not picking up TWIR_NEWSLETTER_THEME setting and defaulting to a CSS style that does not match our most recent issues (e.g. 454).
Currently, the workaround for this has been to change pelicanconf.py from:
if '1' == os.environ.get('TWIR_NEWSLETTER_THEME'):
THEME = 'themes/newsletter'
else:
THEME = 'themes/rusted'
to:
THEME = 'themes/newsletter'
The specific file is ./pelicanconf.py
@mariannegoldin do you wanna take a crack at this one? If you don't have time or expertise, I'll add that help wanted
label and we'll see if we can get some more eyes on it. :D