Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/component/block
.replace('{{block}}', string)
https://github.com/component/block
Last synced: 13 days ago
JSON representation
.replace('{{block}}', string)
- Host: GitHub
- URL: https://github.com/component/block
- Owner: component
- Created: 2013-04-25T06:33:29.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-14T04:59:05.000Z (about 11 years ago)
- Last Synced: 2024-11-11T19:26:19.152Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 163 KB
- Stars: 12
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Block.js [![Build Status](https://travis-ci.org/component/block.png)](https://travis-ci.org/component/block)
Ridiculously simple HTML templating.
All it does is replaces "blocks" in your template with a local.```html
{{content}}
``````js
'
block(html).render({
content: '
})
```yields:
```html
```That's it. HTML templating doesn't have to be any harder.
## API
### var template = Block(html)
```js
var block = require('block')var template = block('
{{content}}')
````html` is a string, and `block` returns a new templating instance.
### template.render(locals)
`locals` is an object of "blocks" to replace in the template.
```js
'
template.render({
content: 'click me'
}) === '
```## License
The MIT License (MIT)
Copyright (c) 2013 Jonathan Ong [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.