[bug#77387,v1,2/2] man-db: Support mdoc-formatted man pages.
Commit Message
* guix/man-db.scm (man-page->entry): Extract man name and section from
.Dt macro.
Change-Id: I02dc99d73dceecdb077315805025efad9a650e91
---
guix/man-db.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
@@ -228,10 +228,13 @@ (define* (man-page->entry file #:optional (resolve identity))
;; man 7 groff groff_mdoc groff_man
;; look for metadata in macro invocations (lines starting with .)
(match (and (string-prefix? "." line) (man-macro-tokenize line))
- ((".TH" name (= string->number section) _ ...)
+ ;; "Title Header" or "Document title"
+ (((or ".TH" ".Dt") name (= string->number section) _ ...)
(loop name section synopsis kind))
+ ;; "Section Header"
((".SH" (or "NAME" "\"NAME\""))
(loop name section (read-synopsis port) kind))
+ ;; include source
((".so" link)
(match (and=> (resolve link)
(cut man-page->entry <> resolve))