diff options
-rw-r--r-- | skate/unstructured.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/skate/unstructured.go b/skate/unstructured.go index 1ca713b..a12507a 100644 --- a/skate/unstructured.go +++ b/skate/unstructured.go @@ -64,7 +64,7 @@ func ParseUnstructured(ref *Ref) error { } // XXX: ISBN ref.Biblio.Extra.ISBN = ParseIsbn(uns) - // Some more examples: + // Some more, not yet handled examples: // - 2005 Sep;95(9):1545-51 // - Pattern Anal. Mach. Intell., 36(2):346-360, 2014. 4, 6, 7" // - only unstructured, and it contains a URL - then reference might be to @@ -75,6 +75,9 @@ func ParseUnstructured(ref *Ref) error { // There seems to be a number tiny of data issues; e.g. one off dates. Can // we fix them here? // Include: https://images.webofknowledge.com/images/help/WOS/J_abrvjt.html, ... + // + // Also: We may have differing values (between .pages and some hint in + // unstructured), e.g. for the page counts, etc. return nil } |