shyamd / mkdocs-bibtex

A MkDocs plugin for citation management using bibtex
Other
79 stars 21 forks source link

Fix pandoc >2.11 reference formatting #141

Closed sondregronas closed 2 years ago

sondregronas commented 2 years ago

Turns out these were broken, apt has been stuck on 2.5 so never noticed.

markdown-citations would spit out [wOrd]{.nocase} on words without first-letter capitalization and include the ::: preamble. markdown_strict appears to be more reliable.

Edit: Removed Python 3.6 from testing, as it appears to be depreciated.

codecov-commenter commented 2 years ago

Codecov Report

Merging #141 (8360063) into master (fa283a3) will increase coverage by 4.38%. The diff coverage is 100.00%.

@@            Coverage Diff             @@
##           master     #141      +/-   ##
==========================================
+ Coverage   92.65%   97.04%   +4.38%     
==========================================
  Files           3        3              
  Lines         177      169       -8     
==========================================
  Hits          164      164              
+ Misses         13        5       -8     
Impacted Files Coverage Δ
src/mkdocs_bibtex/__init__.py 100.00% <ø> (+33.33%) :arrow_up:
src/mkdocs_bibtex/plugin.py 97.10% <ø> (+2.65%) :arrow_up:
src/mkdocs_bibtex/utils.py 96.87% <100.00%> (+3.94%) :arrow_up:

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

shyamd commented 2 years ago

Thanks a ton for catching this!