You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ Instructions: Add a subsection under `[Unreleased]` for additions, fixes, change
13
13
14
14
- New "handout" division, similar to worksheets, but intended for pages you print without exercises.
15
15
-`@workspace` can go on most paragraph-level elements in worksheets and handouts.
16
+
- Experimental support for improve bibliographies using citeproc. `pretext generate references` will generate the required xml file in generated assets.
Copy file name to clipboardExpand all lines: pretext/project/__init__.py
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -886,6 +886,22 @@ def generate_assets(
886
886
"""
887
887
log.info("Generating any needed assets.")
888
888
889
+
# To help with debugging, we are temporarily adding a reference generation step here. The only way this will be called is if `pretext generate references` is called explicitly.
0 commit comments