diff options
author | Marvin Borner | 2021-05-31 12:02:16 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-31 12:02:16 +0200 |
commit | 5fe65e41fdf7301647206c770e5e8d93a51354b6 (patch) | |
tree | 9ae4b94bc74137cde374a336d1646acf84d62221 /cli.js | |
parent | 6644c92863a6d3cf57bedde42e6c64d4989790fd (diff) |
sort
Diffstat (limited to 'cli.js')
-rwxr-xr-x | cli.js | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -144,6 +144,8 @@ if ((idx = params.indexOf("-r")) > -1) { if (y10progs[user.id] && y10progs[user.id].length > 0) comments = [...comments, ...y10progs[user.id].map((comment) => ({ comment }))]; + comments = comments.sort((a, b) => a.comment.length - b.comment.length); + // Comments contents intents indents events if (comments && comments.length > 0) { textex += @@ -284,7 +286,10 @@ if ((idx = params.indexOf("-r")) > -1) { let flip = 1; for (const prof of profs) { const [t, a, p, s] = prof.split(";").map(sanitize); - textex += `\\def\\profname{${t}}\\def\\profabi{${a}}\\def\\profprof{${p}}\\def\\profsecret{${s}}\\def\\profnum{${flip}}\\def\\proflast{${+(flip % 3 === 0)}}\\teacherprofile\n`; + textex += `\\def\\profname{${t}}\\def\\profabi{${a}}\\def\\profprof{${p}}\\def\\profsecret{${s}}\\def\\profnum{${flip}}\\def\\proflast{${+( + flip % 3 === + 0 + )}}\\teacherprofile\n`; if (flip % 3 === 0) { textex += "\\clearpage\n"; } |