Skip to content

Commit 758fda3

Browse files
committed
Fix more entry points and update docs
1 parent f701b96 commit 758fda3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './dist/es/index.js';
1+
export { default } from './dist/es/index.js';
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './dist/es/index.js';
1+
export { default } from './dist/es/index.js';
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from './dist/es/index.js';
1+
export { default } from './dist/es/index.js';

packages/diffhtml-website/pages/parser.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
A core feature of diffHTML is the HTML/XML/SVG parser. This is used whenever
44
you pass a string of markup or [use the html tagged template](/api.html#html)
5-
to [innerHTML](/api.html#inner-html)/[outerHTML](/api.html#ouuter-html). This
6-
works very similar to JSX where you are able to optimize away the parser. While
5+
to [innerHTML](/api.html#inner-html)/[outerHTML](/api.html#ouuter-html). While
76
this code is optimized specifically for the VDOM and is very fast, you may want
8-
to optimize out the markup using the Babel plugin.
7+
to optimize out the parser using the [Babel
8+
plugin](/tools.html#babel-transform).
99

1010
The parser can read full HTML documents including doctype, html/head/body/title
1111
etc tags, unwrapped fragments, and more!

0 commit comments

Comments
 (0)