We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4c96cd commit 37a0800Copy full SHA for 37a0800
2 files changed
CHANGELOG.md
@@ -1,10 +1,8 @@
1
# Unreleased
2
3
-## Added
4
-
5
## Fixed
6
7
-## Changed
+- Ignore leading whitespace on consecutive lines of flag docs
8
9
# 1.27.121 (2025-10-27 / 8245765)
10
src/lambdaisland/cli.clj
@@ -100,7 +100,7 @@
100
(if required "(required)" "")]]
101
(map (fn [l]
102
["" l ""]))
103
- (next (str/split (or doc "") #"\R")))))))))
+ (next (map str/trim (str/split (or doc "") #"\R"))))))))))
104
(when (seq command-pairs)
105
(println "\nSUBCOMMANDS")
106
(print-table
0 commit comments