From d95a605521e866a81e7048454db34680c26b38ad Mon Sep 17 00:00:00 2001 From: Mc-Zen <52877387+Mc-Zen@users.noreply.github.com> Date: Mon, 3 Mar 2025 14:53:58 +0100 Subject: [PATCH] [fix] parser ignoring lines due to 0c03560d820ccb3ebe58b72325b4f24c20464d7f --- src/new-parser.typ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/new-parser.typ b/src/new-parser.typ index 2de2479..5d57d85 100644 --- a/src/new-parser.typ +++ b/src/new-parser.typ @@ -259,7 +259,7 @@ // trim only doc-comment lines let l = line.trim(at: start) if l.starts-with("///") { l } - else { line } + else { line.trim(at: end) } }) let module-description = none