Skip to content

Commit 1e184d8

Browse files
committedMay 1, 2018
Accept more values for has_math
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 00a6751 commit 1e184d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎nikola/post.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def __init__(
267267
is_draft = True
268268
else:
269269
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))
271271

272272
if self.config['WARN_ABOUT_TAG_METADATA']:
273273
show_warning = False
@@ -359,13 +359,13 @@ def has_math(self):
359359
return True
360360
lang = nikola.utils.LocaleBorg().current_lang
361361
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):
363363
return True
364364
if self.config['USE_TAG_METADATA']:
365365
return 'mathjax' in self.tags_for_language(lang)
366366
# If it has math in ANY other language, enable it. Better inefficient than broken.
367367
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):
369369
return True
370370
if self.config['USE_TAG_METADATA']:
371371
return 'mathjax' in self.alltags

0 commit comments

Comments
 (0)
Please sign in to comment.