diff --git a/app/static/scripts/editor.js b/app/static/scripts/editor.js index 436543c..5dc3016 100644 --- a/app/static/scripts/editor.js +++ b/app/static/scripts/editor.js @@ -94,7 +94,7 @@ function editor_act_on_lines(event, fn) let lines = ta.value.substring(firstLineIndex, lastLineIndex).split('\n'); for(let i = 0; i < lines.length; i++) - lines[i] = fn(lines[i]); + lines[i] = fn(lines[i], i); let [start, end] = editor_replace_range(ta, firstLineIndex, lastLineIndex, lines.join('\n')); @@ -202,7 +202,7 @@ function editor_insert_link(event, link_id, text_id, media = false) function editor_title(event, level, diff) { - editor_act_on_lines(event, function(line) { + editor_act_on_lines(event, function(line, _) { /* Strip all the initial # (and count them) */ let count = 0; while(count < line.length && line[count] == '#') count++; @@ -230,7 +230,7 @@ function editor_title(event, level, diff) function editor_quote(event) { - editor_act_on_lines(event, function(line) { + editor_act_on_lines(event, function(line, _) { /* Strip all the initial > (and count them) */ let count = 0; while(count < line.length && line[count] == '>') count++; @@ -246,7 +246,7 @@ function editor_quote(event) function editor_bullet_list(event) { - editor_act_on_lines(event, function(line) { + editor_act_on_lines(event, function(line, _) { let ident_match = line.match(/^[\t]+/m) ?? ['']; let ident = ident_match[0]; let count = ident.length; @@ -260,13 +260,13 @@ function editor_bullet_list(event) function editor_numbered_list(event) { - editor_act_on_lines(event, function(line) { + editor_act_on_lines(event, function(line, number) { let ident_match = line.match(/^[\t]+/m) ?? ['']; let ident = ident_match[0]; let count = ident.length; const contents = line.slice(count); - if ((count < line.length || count == 0) && isNaN(line[count])) return '1. ' + contents; + if ((count < line.length || count == 0) && isNaN(line[count])) return `${number + 1}. ` + contents; return ident + "\t" + contents; });