An open API service indexing awesome lists of open source software.

https://github.com/k1r0s/kml

Template helpers based on EJS
https://github.com/k1r0s/kml

ejs-templates template-engine template-language

Last synced: about 1 year ago
JSON representation

Template helpers based on EJS

Awesome Lists containing this project

README

          

# kml

template parsers built on top [EJS engine](https://github.com/mde/ejs).

```html

  • = item ?>

  • ```

    will be transform into:

    ```html

    for(var __i = 0; __i < items.length; __i++){ ?>

  • = items[__i] ?>

  • } ?>
    ```
    ---

    ```html
    Go!

    ```

    will be transform into:

    ```html

    Go!

    $$on("click", "kfdhua9d", function(){
    sayHello();
    })
    ?>
    ```