diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-08-28 19:08:38 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-08-28 19:08:38 +0200 |
commit | c8a642de9a7b6c0e21c8327232245ab721822842 (patch) | |
tree | 664126b3d15ccb8a29867da366115765a3642957 /guix/import | |
parent | b4c7fe02ae5cdb05dc03982fa460a5ee0d7fd7f5 (diff) |
import-utils: Do not include punctuation when wrapping in @code{}.
* guix/import/utils.scm (beautify-description): Exclude punctuation.
* tests/import-utils.scm: Add new test.
Diffstat (limited to 'guix/import')
-rw-r--r-- | guix/import/utils.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/guix/import/utils.scm b/guix/import/utils.scm index fcd7707482..0cf52cdbde 100644 --- a/guix/import/utils.scm +++ b/guix/import/utils.scm @@ -342,7 +342,14 @@ LENGTH characters." (let ((pattern (make-regexp "([A-Z][a-z]+[A-Z]|[a-z]+[A-Z])"))) (match (list-matches pattern word) (() word) - (_ (string-append "@code{" word "}"))))))))) + ((m . rest) + ;; Do not include leading or trailing punctuation. + (let* ((last-text (or (and=> (string-skip-right word char-set:punctuation) 1+) + (string-length word))) + (inner (substring word (match:start m) last-text)) + (pre (string-take word (match:start m))) + (post (substring word last-text (string-length word)))) + (string-append pre "@code{" inner "}" post)))))))))) (words (string-tokenize (string-trim-both description) (char-set-complement |