[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55242] [PATCH 05/10] guix: import: go: Harden sxml->texi conversion
From: |
Maxime Devos |
Subject: |
[bug#55242] [PATCH 05/10] guix: import: go: Harden sxml->texi conversion. |
Date: |
Tue, 03 May 2022 18:32:58 +0200 |
User-agent: |
Evolution 3.38.3-1 |
Attila Lendvai schreef op di 03-05-2022 om 13:42 [+0200]:
> (sxml-match sxml-node
> - ((strong ,text)
> - (format #f "@strong{~a}" text))
> - ((a (@ (href ,url)) ,text)
> - (format #f "@url{~a,~a}" url text))
> - ((code ,text)
> - (format #f "@code{~a}" text))
> - (,something-else something-else)))
> + ((strong ,text)
> + (format #f "@strong{~a}" text))
Do we know for sure here that 'text' is actually a string? What if the
input was (strong (em (a (href "http://super") "Super") emphasis")?
> + ((a (@ (href ,url)) ,body)
> + ;; Examples: image in the url: github.com/go-openapi/jsonpointer
> + ;; (code ...) in the URL body: github.com/mwitkow/go-conntrack
> + (if (string? body)
> + (format #f "@url{~a,~a}" url body)
> + (sxml-match body
> + ((code ,text)
> + (format #f "@url{~a,~a}" url (sxml->texi body)))
> + (,_
I'm not familiar enough with sxml to be sure, but maybe the , can be
removed here.
> + (format #f "@url{~a}" url)))))
> + ((code ,text)
> + (format #f "@code{~a}" text))
> + (,something-else
> + ;; Example: @ in the description: github.com/ethersphere/langos
> + (if (string? something-else)
> + (string-replace-substring something-else
> + "@" "@@")
> + something-else))))
Anyway, more cases are nice, but I recommend tests.
Greetings,
Maxime.
signature.asc
Description: This is a digitally signed message part
- [bug#55242] [PATCH 08/10] guix: import: go: Modules in a subdir and prefixed tags., (continued)
- [bug#55242] [PATCH 08/10] guix: import: go: Modules in a subdir and prefixed tags., Maxime Devos, 2022/05/03
- [bug#55242] [PATCH 08/10] guix: import: go: Modules in a subdir and prefixed tags., Maxime Devos, 2022/05/03
- [bug#55242] [PATCH 08/10] guix: import: go: Modules in a subdir and prefixed tags., Maxime Devos, 2022/05/03
- [bug#55242] [PATCH 08/10] guix: import: go: Modules in a subdir and prefixed tags., Maxime Devos, 2022/05/03
- [bug#55242] [PATCH 08/10] guix: import: go: Modules in a subdir and prefixed tags., Maxime Devos, 2022/05/03
- [bug#55242] [PATCH 08/10] guix: import: go: Modules in a subdir and prefixed tags., Maxime Devos, 2022/05/03
- [bug#55242] [PATCH 08/10] guix: import: go: Modules in a subdir and prefixed tags., Maxime Devos, 2022/05/03
[bug#55242] [PATCH 05/10] guix: import: go: Harden sxml->texi conversion., Attila Lendvai, 2022/05/03
- [bug#55242] [PATCH 05/10] guix: import: go: Harden sxml->texi conversion.,
Maxime Devos <=
[bug#55242] [PATCH 02/10] guix: import: go: Rename go.pkg.dev-info to pkg.go.dev-info., Maxime Devos, 2022/05/03
[bug#55242] [PATCH 01/10] guix: import: Print the number of packages at the end., Maxime Devos, 2022/05/03
[bug#55242] [PATCH 01/10] guix: import: Print the number of packages at the end., Maxime Devos, 2022/05/03
[bug#55242] [PATCH 01/10] guix: import: Print the number of packages at the end., Maxime Devos, 2022/05/14
[bug#55242] [PATCH 01/10] guix: import: Print the number of packages at the end., Maxime Devos, 2022/05/14