Skip to content

Commit

Permalink
New Version: 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
clarete committed Dec 6, 2020
1 parent 7dbe8c4 commit 8c4ba0d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
25 changes: 19 additions & 6 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,26 @@ <h2 id="orgb30c8ab">Project Status</h2>
</div>
</div>

<div id="outline-container-org3736ebf" class="outline-2">
<h2 id="org3736ebf">Changelog</h2>
<div class="outline-text-2" id="text-org3736ebf">
<div id="outline-container-org37365f1" class="outline-2">
<h2 id="org37365f1">Changelog</h2>
<div class="outline-text-2" id="text-org37365f1">
</div>
<div id="outline-container-org029ea1c" class="outline-3">
<h3 id="org029ea1c">0.1.2</h3>
<div class="outline-text-3" id="text-org029ea1c">
<div id="outline-container-org487316d" class="outline-3">
<h3 id="org487316d">0.1.3</h3>
<div class="outline-text-3" id="text-org487316d">
<ul class="org-ul">
<li>Support for named arguments on filters. They are passed to the
handler as an <code>assoc</code> list. E.g.: <code>{{ foo(var1="val", var2=2) }}</code>
will get <code>((var1 . val) (var2 . 2))</code> as the only parameter.
Named and positional arguments can be mixed, but the Emacs-Lisp
handler will have to deal with the order.</li>
</ul>
</div>
</div>

<div id="outline-container-orgbdaf174" class="outline-3">
<h3 id="orgbdaf174">0.1.2</h3>
<div class="outline-text-3" id="text-orgbdaf174">
<ul class="org-ul">
<li>Support for user defined filter functions via
<code>templatel-env-add-filter</code> and <code>templatel-env-remove-filter</code>.</li>
Expand Down
7 changes: 7 additions & 0 deletions docs/src/index.org
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@

* Changelog

** 0.1.3
* Support for named arguments on filters. They are passed to the
handler as an ~assoc~ list. E.g.: ~{{ foo(var1="val", var2=2) }}~
will get ~((var1 . val) (var2 . 2))~ as the only parameter.
Named and positional arguments can be mixed, but the Emacs-Lisp
handler will have to deal with the order.

** 0.1.2
* Support for user defined filter functions via
~templatel-env-add-filter~ and ~templatel-env-remove-filter~.
Expand Down
2 changes: 1 addition & 1 deletion templatel.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
;;
;; Author: Lincoln Clarete <lincoln@clarete.li>
;; URL: https://clarete.li/templatel
;; Version: 0.1.2
;; Version: 0.1.3
;; Package-Requires: ((emacs "25.1"))
;;
;; Copyright (C) 2020 Lincoln Clarete
Expand Down

0 comments on commit 8c4ba0d

Please sign in to comment.