Replies: 1 comment 2 replies
-
I just pushed a commit that fixes this, thanks for noting it! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Recently I discovered the bibliographic possibilities of pandoc and markdown. Until now, I wrote the references in LaTeX, so I have several files with the .bib extension, mostly with Hungarian literature.
I tried to reuse these using the CSL style. It worked, except for the items where the entry was something like this:
pagetotal = {123}
I realized that this kind of field is used by CSL as
number-of-pages
, so I tried to do the pandoc's biblatex to csljson conversion:pandoc -f biblatex -t csljson -o bibliography.csljson bibliography.bib
The
pagetotal
ornumber-of-pages
line was missing from the result!I believe this may be because the conversion is literal and not logical. If so, please fix this bug unless there is no other solution.
Note: I didn't check for the same error among other keywords.
Beta Was this translation helpful? Give feedback.
All reactions