Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Work begun: format citations with htlatex
  • Loading branch information
kthoden committed Mar 19, 2019
1 parent 6770dd9 commit e8f3a6f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions libeoaconvert.py
Expand Up @@ -200,6 +200,16 @@ def plural(num, noun, plural=None):
return phrase
# def plural ends here


def format_citations_tex4ht(used_citekeys, bibdata, language, tmp_filename):
"""Return a formatted xmlstring of the used citations"""

tmp_path_md = "tmp_files" + os.path.sep + tmp_filename + ".tex"
tmp_path_html = "tmp_files" + os.path.sep + tmp_filename + ".html"

return references
# def format_citations_tex4ht ends here

def format_citations(used_citekeys, bibdata, language, tmp_filename):
"""Return a formatted xmlstring of the used citations"""

Expand Down

0 comments on commit e8f3a6f

Please sign in to comment.