Skip to content

Commit 6fef070

Browse files
committed
update readme remove tab
1 parent 75a4a71 commit 6fef070

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,22 @@ Import the JS file in your page:
5757
```html
5858
<!DOCTYPE html>
5959
<html lang="en" >
60-
<head>
61-
<title>node-sql-parser</title>
62-
<meta charset="utf-8" />
63-
</head>
64-
<body>
65-
<p><em>Check console to see the output</em></p>
66-
<script src="https://unpkg.com/node-sql-parser@latest/parser.min.js"></script>
67-
<script>
68-
window.onload = function () {
69-
// Example queries
70-
const parser = new NodeSQLParser.Parser()
71-
const ast = parser.astify("select id, name from students where age < 18")
72-
console.log(ast)
60+
<head>
61+
<title>node-sql-parser</title>
62+
<meta charset="utf-8" />
63+
</head>
64+
<body>
65+
<p><em>Check console to see the output</em></p>
66+
<script src="https://unpkg.com/node-sql-parser@latest/parser.min.js"></script>
67+
<script>
68+
window.onload = function () {
69+
// Example queries
70+
const parser = new NodeSQLParser.Parser()
71+
const ast = parser.astify("select id, name from students where age < 18")
72+
console.log(ast)
7373
}
74-
</script>
75-
</body>
74+
</script>
75+
</body>
7676
</html>
7777
```
7878

0 commit comments

Comments
 (0)