Precise DOM morphing
morphing typescript dom

Use spaces instead of tabs for markdown files

+13 -4
+11 -2
.prettierrc
··· 1 1 { 2 - "printWidth": 130, 3 - "useTabs": true, 2 + "printWidth": 130, 3 + "useTabs": true, 4 + "overrides": [ 5 + { 6 + "files": "*.md", 7 + "options": { 8 + "useTabs": false, 9 + "tabWidth": 2 10 + } 11 + } 12 + ] 4 13 }
+2 -2
README.md
··· 22 22 23 23 ```html 24 24 <script type="module"> 25 - import { morph } from "https://www.unpkg.com/morphlex@0.0.15/dist/morphlex.min.js"; 25 + import { morph } from "https://www.unpkg.com/morphlex@0.0.15/dist/morphlex.min.js"; 26 26 27 - morph(currentNode, referenceNode); 27 + morph(currentNode, referenceNode); 28 28 </script> 29 29 ``` 30 30