tangled
alpha
login
or
join now
yippee.fun
/
morphlex
0
fork
atom
Precise DOM morphing
morphing
typescript
dom
0
fork
atom
overview
issues
pulls
pipelines
Use spaces instead of tabs for markdown files
joel.drapper.me
2 years ago
2963e170
6145498f
+13
-4
2 changed files
expand all
collapse all
unified
split
.prettierrc
README.md
+11
-2
.prettierrc
···
1
{
2
-
"printWidth": 130,
3
-
"useTabs": true,
0
0
0
0
0
0
0
0
0
4
}
···
1
{
2
+
"printWidth": 130,
3
+
"useTabs": true,
4
+
"overrides": [
5
+
{
6
+
"files": "*.md",
7
+
"options": {
8
+
"useTabs": false,
9
+
"tabWidth": 2
10
+
}
11
+
}
12
+
]
13
}
+2
-2
README.md
···
22
23
```html
24
<script type="module">
25
-
import { morph } from "https://www.unpkg.com/morphlex@0.0.15/dist/morphlex.min.js";
26
27
-
morph(currentNode, referenceNode);
28
</script>
29
```
30
···
22
23
```html
24
<script type="module">
25
+
import { morph } from "https://www.unpkg.com/morphlex@0.0.15/dist/morphlex.min.js";
26
27
+
morph(currentNode, referenceNode);
28
</script>
29
```
30