Skip to content

Commit 1942fd6

Browse files
CedricRaisongoto-bus-stop
authored andcommitted
rename bel to nanohtml (#157)
I update the README because bel is now called [nanohtml](https://github.com/choojs/nanohtml)
1 parent addbd33 commit 1942fd6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ like [browserify](http://browserify.org/) does.
1919
Given some inline CSS:
2020
```js
2121
const css = require('sheetify')
22-
const html = require('bel')
22+
const html = require('nanohtml')
2323

2424
const prefix = css`
2525
:host > h1 {
@@ -60,7 +60,7 @@ The element that gets a prefix applied can be styled using the [`:host`
6060
pseudoselector][1]:
6161
```js
6262
const css = require('sheetify')
63-
const html = require('bel')
63+
const html = require('nanohtml')
6464

6565
const prefix = css`
6666
:host {
@@ -104,7 +104,7 @@ Sheetify is very good for namespacing static css assets in your javaScript code.
104104

105105
```js
106106
const css = require('sheetify')
107-
const html = require('bel')
107+
const html = require('nanohtml')
108108

109109
const sectionWidth = '100px';
110110
const prefix = css`
@@ -153,7 +153,7 @@ To include an external CSS file you can pass a path to sheetify as
153153
`sheetify('./my-file.css')`:
154154
```js
155155
const css = require('sheetify')
156-
const html = require('bel')
156+
const html = require('nanohtml')
157157

158158
const prefix = css('./my-styles.css')
159159

@@ -195,7 +195,7 @@ For example include
195195
autoprefixing, variables and more:
196196
```js
197197
const css = require('sheetify')
198-
const html = require('bel')
198+
const html = require('nanohtml')
199199

200200
const prefix = css`
201201
h1 {

0 commit comments

Comments
 (0)