Better sorting of note categories

fixes #1
This commit is contained in:
Max G
2020-02-18 22:52:12 +00:00
parent e56042958b
commit aded72928c
6 changed files with 128 additions and 151 deletions

View File

@@ -92,7 +92,7 @@ ProcessText.deduceNoteTitle = (inString) => {
//Empty line, may be a list open or close
if(cleanLine.length == 0 && (startTags.includes(lineStart) || endTags.includes(lineStart) )){
if(listStart == false){
charLimit = 400 //Double size for list notes
//charLimit = 400 //Double size for list notes
}
finalLines.push(lines[i])
totalLines++