@@ -382,9 +382,9 @@ We use the `require('assert')` module from Node core to provide helpful error
382382messages in development. In production you probably want to strip this using
383383[ unassertify] [ unassertify ] .
384384
385- To convert inlined HTML to valid DOM nodes we use ` require('bel ') ` . This has
385+ To convert inlined HTML to valid DOM nodes we use ` require('nanohtml ') ` . This has
386386overhead during runtime, so for production environments we should unwrap this
387- using [ yo-yoify ] [ yo-yoify ] .
387+ using the [ nanohtml transform ] [ nanohtml ] .
388388
389389Setting up browserify transforms can sometimes be a bit of hassle; to make this
390390more convenient we recommend using [ bankai build] [ bankai ] to build your assets for production.
@@ -414,9 +414,9 @@ answer short: we're using something even better.
414414### How can I support older browsers?
415415Template strings aren't supported in all browsers, and parsing them creates
416416significant overhead. To optimize we recommend running ` browserify ` with
417- [ yo-yoify ] [ yo-yoify ] as a global transform or using [ bankai] [ bankai ] directly.
417+ [ nanohtml ] [ nanohtml ] as a global transform or using [ bankai] [ bankai ] directly.
418418``` sh
419- $ browserify -g yo-yoify
419+ $ browserify -g nanohtml
420420```
421421
422422### Is choo production ready?
@@ -479,11 +479,11 @@ Render the application to a string. Useful for rendering on the server.
479479
480480### ` choo/html `
481481Create DOM nodes from template string literals. Exposes
482- [ bel ] ( https://github.com/shama/bel ) . Can be optimized using
483- [ yo-yoify ] [ yo-yoify ] .
482+ [ nanohtml ] ( https://github.com/choojs/nanohtml ) . Can be optimized using
483+ [ nanohtml ] [ nanohtml ] .
484484
485485### ` choo/html/raw `
486- Exposes [ bel /raw] ( https://github.com/shama/bel #unescaping ) helper for rendering raw HTML content.
486+ Exposes [ nanohtml /raw] ( https://github.com/shama/nanohtml #unescaping ) helper for rendering raw HTML content.
487487
488488## Installation
489489``` sh
@@ -585,6 +585,7 @@ Become a backer, and buy us a coffee (or perhaps lunch?) every month or so.
585585
586586[ bankai ] : https://github.com/choojs/bankai
587587[ bel ] : https://github.com/shama/bel
588+ [ nanohtml ] : https://github.com/choojs/nanohtml
588589[ browserify ] : https://github.com/substack/node-browserify
589590[ budo ] : https://github.com/mattdesl/budo
590591[ es2020 ] : https://github.com/yoshuawuyts/es2020
@@ -594,6 +595,5 @@ Become a backer, and buy us a coffee (or perhaps lunch?) every month or so.
594595[ nanomorph ] : https://github.com/choojs/nanomorph
595596[ nanorouter ] : https://github.com/choojs/nanorouter
596597[ yo-yo ] : https://github.com/maxogden/yo-yo
597- [ yo-yoify ] : https://github.com/shama/yo-yoify
598598[ unassertify ] : https://github.com/unassert-js/unassertify
599599[ window-performance ] : https://developer.mozilla.org/en-US/docs/Web/API/Performance
0 commit comments