Skip to content

Commit 3f8144b

Browse files
committedMay 17, 2017
WTF
1 parent 502bc31 commit 3f8144b

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed
 

‎posts/nikola-v785-is-out.md

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
.. title: Nikola v7.8.5 is out!
2+
.. slug: nikola-v785-is-out
3+
.. date: 2017-05-12 12:50:41 UTC
4+
.. tags: nikola, planet, python, programming, release
5+
.. category:
6+
.. link:
7+
.. description:
8+
.. type: text
9+
.. author: Roberto Alsina
10+
11+
On behalf of the Nikola team, I am pleased to announce the immediate availability of Nikola v7.8.5. It fixes some bugs and adds new features.
12+
13+
What is Nikola?
14+
===============
15+
16+
Nikola is a static site and blog generator, written in Python.
17+
It can use Mako and Jinja2 templates, and input in many popular markup formats, such as reStructuredText and Markdown — and can even turn Jupyter (IPython) Notebooks into blog posts! It also supports image galleries, and is multilingual. Nikola is flexible, and page builds are extremely fast, courtesy of doit (which is rebuilding only what has been changed).
18+
19+
Find out more at the website: <https://getnikola.com/>
20+
21+
Downloads
22+
=========
23+
24+
Install using `pip install Nikola` or download tarballs on [GitHub][] and [PyPI][].
25+
26+
[GitHub]: https://github.com/getnikola/nikola/releases/tag/v7.8.5
27+
[PyPI]: https://pypi.python.org/pypi/Nikola/7.8.5
28+
29+
Changes
30+
=======
31+
32+
Math support changes
33+
--------------------
34+
35+
* If you edited templates related to indexes and posts (``index.tmpl``,
36+
``post.tmpl``, ``index_helper.tmpl``, ``post_helper.tmpl``) in your
37+
templates, you should adjust them to use ``math_helper.tmpl``.
38+
* If you are using KaTeX, you should remove the CSS snippet from your
39+
configuration (templates), as that is now handled by Nikola.
40+
41+
Features
42+
--------
43+
44+
* Get rid of ``THEME_REVEAL_CONFIG_*`` settings, use global context
45+
instead (Issue #2485)
46+
* New emoji shortcode
47+
* Add ``SECTION_PATH`` support to move the section indexes to a
48+
user-defined location (Issue #2738)
49+
* Add a list of template variables to documentation (Issues #2328,
50+
#2712, #2259) and update the theming reference (Issue #2259)
51+
* Add ``{post_title}`` tag for Read More links (Issue #2709)
52+
* Include MathJax config only when needed (via Issue #2715)
53+
* Include KaTeX CSS automatically when needed (Issue #2715)
54+
* Split out math code into new ``math_helper.tmpl`` template (Issue
55+
#2715)
56+
* Added ``jpegoptim_progressive`` filter to convert jpeg images to progressive
57+
jpegs.
58+
59+
Bugfixes
60+
--------
61+
62+
* Open ``127.0.0.1`` when using ``nikola serve -b`` and default
63+
``0.0.0.0`` hostname to avoid resolution issues — the site is still
64+
available on all interfaces (Issue #2755)
65+
* Don't break animated GIFs in postprocessing (Issue #2750)
66+
* More robust shortcodes, no need to escape URLs in reSt, work better
67+
with LaTeX, etc.
68+
* No longer creates empty subarchive pages, and no longer create broken
69+
archive navigation links on day level (Issue #2734)
70+
* Fixes post scanner plugin order (Issue #2720)
71+
* Rename ``POSTS_SECTION_ARE_INDEXES`` to ``POSTS_SECTIONS_ARE_INDEXES``
72+
* Make date ranges work in shortcode-based post lists (Issue #2690)
73+
* Read data files only if Nikola configuration exists (Issue #2708)
74+
* Make ``PAGE_INDEX`` work with ``PRETTY_URLS`` (Issue #2705)
75+
* Fix PHP posts/pages not rendering on Windows (Issue #2706)
76+
* Improving support for PostScanner plugins by asking them which compilers
77+
are unused (Issue #2496)
78+

0 commit comments

Comments
 (0)
Please sign in to comment.