Skip to content

Latest commit

 

History

History
65 lines (54 loc) · 3.37 KB

ReleaseNotes.md

File metadata and controls

65 lines (54 loc) · 3.37 KB

vNext

  • #206 - Code block support contributed by Andrey Akinshin (AndreyAkinshin)
  • #157 - Add support to load dlls in "_plugins" path contributed by Miguel Román (miguelerm)
  • #203 - Support for 404 pages contributed by Damian Karzon (dkarzon)
  • #202 - Add Excerpt feature for pages contributed by Andrey Akinshin (AndreyAkinshin)
  • #200 - Single category support for liquid posts contributed by Andrey Akinshin (AndreyAkinshin)
  • #201 - Custom metadatas in pages are not available from site.pages in liquid +fix
  • #200 - Single category support for liquid posts contributed by Andrey Akinshin (AndreyAkinshin)
  • #199 - PostUrl should be a Liquid Tag +breaking change It should now be used like this
{% post_url post-title.md %}
  • #198 - Liquid tag/filter with underscore doesn't works in markdown files +fix
  • #170 - update binary download

Commits: 1436ac1f52...6aeae31f9a

0.2.0

Breaking changes

  • #189: Handle bool in yaml In a YAML frontmatter like the following:
-------
active: true
-------

Recognize that the value of "active" is a boolean and convert it in the datas for DotLiquid so that it is possible to use it in a template like that:

{% if page.active == true %}

Like in Jekyll.

But this will cause a breaking change if anyone have a

{% if page.active == 'true' %}

in a template.

Features

  • #181: Added new Jekyll filters and tags by switchspan

    • DateToLongStringFilter
    • DateToStringFilter
    • NumberOfWordsFilter
    • CgiEscapeFilter
    • UriEscapeFilter
    • CommentBlock
    • PostUrlBlock
  • #185: Allow all *.md, *.mkd, *.mkdn, *.mdown and *.markdown files to be processed

  • Add a cleantarget argument which deletes the target directory (_site), like Jekyll does by default

  • Improve less compilation

  • Add include and exclude configuration features, like in Jekyll

  • #189: Add support for category in page permalinks by dkarzon

  • #186: site.title can be valorized in _config.yaml and page.ig is generated for every posts and pages

Fixes

  • Fix issue where transforms aren't processed during taste => fix the .less not compiled during taste for example
  • #194: Fix issue where the style wasn't used for WebSequenceDiagram: now with "@@sequence mscgen", the style will be "mscgen"

Commits: ...