It's been a while but this is a welcome update (Changelog, Download). There are only some minor glitches so far.
conf/userstyle.css:/* Fixes for the charpicker Plugin */ /* See: https://github.com/turnermm/charpicker/issues/16 */ .tpl_sprintdoc #dokuwiki__content { overflow-y: visible; overflow-x: clip; } .page div.toolbar div.picker { z-index: 1; } /* End fixes. */
Two things I recommend after updating:
rm -rf data/cache/[0-9a-f]. A stale cache can cause very weird rendering issues.php bin/indexer.php -c as the same user the webserver is using. Add -d max_execution_time=1200 or similar if the time limit is too short.For me the most significant feature is the speed improvement of the parser. In one of my wikis I have a huge complex page with >600 KB source code. It required tinkering with the PHP runtime time limit (30s in the default setting) to avoid timeouts, as this page takes closer to 40s to parse on the server it's running on. This has been greatly improved by a factor of more than 5.
The headline feature is (partial) Markdown (GFM) support though. If the syntax mode setting $conf['syntax'] allows, Markdown syntax can be mixed with Dokuwiki syntax, giving either one preference when conflicts arise. However pure Dokuwiki syntax is still one of the options and the default setting. See Markdown Support for details.
And of course lots of other improvements, see Changelog (and Changelog for Developers with the full details).