@@ -267,7 +267,7 @@ def __init__(
267
267
is_draft = True
268
268
else :
269
269
LOGGER .warn (('The post "{0}" has the unknown status "{1}". ' +
270
- 'Valid values are "published", "private" and "draft".' ).format (self .source_path , status ))
270
+ 'Valid values are "published", "featured", " private" and "draft".' ).format (self .source_path , status ))
271
271
272
272
if self .config ['WARN_ABOUT_TAG_METADATA' ]:
273
273
show_warning = False
@@ -359,13 +359,13 @@ def has_math(self):
359
359
return True
360
360
lang = nikola .utils .LocaleBorg ().current_lang
361
361
if self .is_translation_available (lang ):
362
- if self .meta [lang ].get ('has_math' ) in ('true' , 'True' , 'yes' ):
362
+ if self .meta [lang ].get ('has_math' ) in ('true' , 'True' , 'yes' , '1' , 1 , True ):
363
363
return True
364
364
if self .config ['USE_TAG_METADATA' ]:
365
365
return 'mathjax' in self .tags_for_language (lang )
366
366
# If it has math in ANY other language, enable it. Better inefficient than broken.
367
367
for lang in self .translated_to :
368
- if self .meta [lang ].get ('has_math' ) in ('true' , 'True' , 'yes' ):
368
+ if self .meta [lang ].get ('has_math' ) in ('true' , 'True' , 'yes' , '1' , 1 , True ):
369
369
return True
370
370
if self .config ['USE_TAG_METADATA' ]:
371
371
return 'mathjax' in self .alltags
0 commit comments