Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
part of #1782
  • Loading branch information
ralsina committed Jun 3, 2015
1 parent cac64aa commit 071c3fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -15,6 +15,7 @@ Features
Bugfixes
--------

* Automatically mark ipynb posts/pages as requiring mathjax (Issue #1782)
* Extract ``nikola check`` target list from actual task list instead of parsing (Issue #1758)
* Treat special-purpose “draft” tag case-insensitive
* Avoid some rebuild loops (Issue #1747)
Expand Down
2 changes: 1 addition & 1 deletion nikola/post.py
Expand Up @@ -225,7 +225,7 @@ def __init__(
and not self.publish_later

# If mathjax is a tag, then enable mathjax rendering support
self.is_mathjax = 'mathjax' in self.tags
self.is_mathjax = ('mathjax' in self.tags) or (self.compiler.name == 'ipynb')

# Register potential extra dependencies
self.compiler.register_extra_dependencies(self)
Expand Down

0 comments on commit 071c3fa

Please sign in to comment.