diff options
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/dataset-metadata-git.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/dataset-metadata-git.scm b/examples/dataset-metadata-git.scm index 023e4c6..aeced0a 100755 --- a/examples/dataset-metadata-git.scm +++ b/examples/dataset-metadata-git.scm @@ -20,7 +20,9 @@ (define (infopages/sql->rtf result) (let* ((get (cut assoc-ref result <>)) (get* (compose (lambda (str) - (if (string-blank? str) + (if (or (string-blank? str) + (string-ci=? + (string-trim-both str) "None")) #f str)) get)) |