We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004547f commit 71de817Copy full SHA for 71de817
1 file changed
sutta_publisher/src/sutta_publisher/edition_parsers/latex.py
@@ -189,10 +189,11 @@ def _append_footnote(self) -> str:
189
_endnote = BeautifulSoup(self.endnotes.pop(0), "lxml")
190
_contents = _endnote.p.contents if _endnote.p else _endnote.body.contents
191
_data: str = self._process_contents(contents=_contents)
192
- if self.config.edition.publication_type == "hardcover":
193
- return ""
194
- else:
195
- return cast(str, Command("footnote", _data).dumps())
+ return cast(str, Command("footnote", _data).dumps())
+ # if self.config.edition.publication_type == "hardcover":
+ # return ""
+ # else:
196
+ # return cast(str, Command("footnote", _data).dumps())
197
else:
198
return ""
199
0 commit comments