# HG changeset patch # User HIROSE Yuuji # Date 1653793679 -32400 # Node ID 71528696780b610349a28243b367960ace3cff16 # Parent eb0ffd3b37c067b13a72193f76a56b9efbe95d6d Syntax error fixed. diff -r eb0ffd3b37c0 -r 71528696780b s4-main.js --- a/s4-main.js Sun May 29 12:06:46 2022 +0900 +++ b/s4-main.js Sun May 29 12:07:59 2022 +0900 @@ -1051,8 +1051,7 @@ let text = td.innerHTML; if (text.startsWith("\>#")) { let newline = text.indexOf("\n"); - let first = - rest = text.substring(newline); + let first, rest; if (newline) { first = text.substring(0, newline); rest = text.substring(newline);