Skip to content

Commit

Permalink
Fix #2113
Browse files Browse the repository at this point in the history
As noted in #2113 there is a possible typo in MakeBibliography.pm naming
an attribute `ltx:title` as opposed to `ltx:bib-title`. This commit
fixes the typo.
  • Loading branch information
tkw1536 committed Jul 12, 2023
1 parent 4757b39 commit 02cb05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LaTeXML/Post/MakeBibliography.pm
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ sub do_links {
[[['ltx:bib-name[@role="author"]', '', '', 'author', \&do_authors, ''],
['ltx:bib-name[@role="editor"]', '', '', 'editor', \&do_editorsA, ''],
['ltx:bib-date[@role="publication"]', '', '', 'year', \&do_year, ''],
['ltx:title', '', '', 'title', \&do_any, ''],
['ltx:bib-title', '', '', 'title', \&do_any, ''],
['ltx:bib-type', '', '', 'type', \&do_any, ''],
['! ltx:bib-type', '', '', 'type', sub { ('(Website)'); }, '']],
[['ltx:bib-organization', ', ', ' ', 'publisher', \&do_any, ''],
Expand Down

0 comments on commit 02cb05e

Please sign in to comment.