diff options
Diffstat (limited to 'cli.js')
-rwxr-xr-x | cli.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -144,14 +144,14 @@ if ((idx = params.indexOf("-r")) > -1) { // Comments contents intents indents events if (comments && comments.length > 0) { textex += - "\n\n\\renewcommand{\\arraystretch}{1.5}\\hspace*{\\commentsx}\\begin{tabularx}{\\commentswidth}{*{2}{>{\\RaggedRight\\arraybackslash}X}}"; + "\n\n\\begin{small}\\renewcommand{\\arraystretch}{1.5}\\hspace*{\\commentsx}\\begin{tabularx}{\\commentswidth}{*{2}{>{\\RaggedRight\\arraybackslash}X}}"; for (let i = 0; i < comments.length; i += 2) { const first = comments[i].comment; const second = comments[i + 1] ? comments[i + 1].comment : " "; textex += `${sanitize(first)} & ${sanitize(second)} \\\\\n`; if (i + 2 < comments.length) textex += " \\specialrule{.03em}{0em}{0em}\n"; } - textex += "\\end{tabularx}\\renewcommand{\\arraystretch}{1}"; + textex += "\\end{tabularx}\\renewcommand{\\arraystretch}{1}\\end{small}"; } await fs.writeFile( |