This commit is contained in:
TheGiddyLimit
2024-03-26 22:43:48 +00:00
parent 12f34a38f8
commit d075252329
122 changed files with 4907 additions and 1489 deletions

View File

@@ -1204,6 +1204,8 @@ class ConvertUtil {
* @returns {boolean}
*/
static isNameLine (line, {exceptions = null, splitterPunc = null} = {}) {
if (ConvertUtil.isListItemLine(line)) return false;
const spl = this._getMergedSplitName({line, splitterPunc});
if (spl.map(it => it.trim()).filter(Boolean).length === 1) return false;