"vscode:/vscode.git/clone" did not exist on "e3335afa3a0716a6fedc7498eb7cf404db516ee9"
Commit 8ac6ac83 authored by Dave Machado's avatar Dave Machado
Browse files

update var declare formatting

parent 9c80c51d
...@@ -5,18 +5,20 @@ function setupMd(filename, anchor) { ...@@ -5,18 +5,20 @@ function setupMd(filename, anchor) {
if (err) { if (err) {
return console.log(err); return console.log(err);
} }
var lines = text.split("\n"); var lines = text.split("\n"),
var cur_line = 0; cur_line = 0,
var line = "" line = "",
var table_name = ""; table_name = "",
var col_num = 0; col_num = 0,
var cols = []; cols = [],
var rows = []; rows = [],
arr = [];
function read_line() { function read_line() {
return lines[cur_line++]; return lines[cur_line++];
} }
var arr = [];
while (true) { while (true) {
var cols = []; var cols = [];
var rows = []; var rows = [];
......
This diff is collapsed.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment