-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement getExtension and getDescription for importers #1487
Conversation
4554cf5
to
800b247
Compare
@@ -34,7 +35,7 @@ | |||
* journals, e.g., Physical Review Letters, don't use pages anymore) | |||
* | |||
* check here for details on the format | |||
* http://www.ecst.csuchico.edu/~jacobsd/bib/formats/endnote.html | |||
* http://www.ecst.csuchico.edu/~jacobsd/bib/formats/endnote.html (outdated) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you check whether there is an other source for the endnote format?
5aa80fe
to
023f63c
Compare
@@ -37,7 +38,7 @@ | |||
* Importer for the Medline format. | |||
* | |||
* check here for details on the format | |||
* --INSERT INFO HERE-- | |||
* http://www.nlm.nih.gov/bsd/mms/medlineelements.html |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's the wrong link, you need the link for the xml elements.
023f63c
to
931fb4a
Compare
@@ -234,12 +231,13 @@ public String getFormatName() { | |||
|
|||
@Override | |||
public List<String> getExtensions() { | |||
return null; | |||
//TODO: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do the todo 😄
@@ -226,17 +221,17 @@ private void readLine(BufferedReader in) throws IOException { | |||
|
|||
/** | |||
* Read multiple lines. | |||
* | |||
* <p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the additonal <p>
?
Please fix the minor things. After this, mark it again for ready-for-review and we will merge this in. |
Implement getExtension and getDescription for importers. #1444