Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions leanblueprint/Packages/blueprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,20 +297,20 @@ def make_legend() -> None:
descriptions.
"""
document.userdata['dep_graph']['legend'].extend([
(f"{document.userdata['dep_graph']['colors']['can_state'][1]} border",
"the <em>statement</em> of this result is ready to be formalized; all prerequisites are done"),
(f"{document.userdata['dep_graph']['colors']['not_ready'][1]} border",
"the <em>statement</em> of this result is not ready to be formalized; the blueprint needs more work"),
(f"{document.userdata['dep_graph']['colors']['can_state'][1]} background",
"the <em>proof</em> of this result is ready to be formalized; all prerequisites are done"),
(f"{document.userdata['dep_graph']['colors']['can_state'][1]} border",
"the <em>statement</em> of this result is ready to be formalized; all prerequisites are done"),
(f"{document.userdata['dep_graph']['colors']['proved'][1]} border",
"the <em>statement</em> of this result is formalized"),
(f"{document.userdata['dep_graph']['colors']['mathlib'][1]} border",
"this is in Mathlib"),
(f"{document.userdata['dep_graph']['colors']['can_state'][1]} background",
"the <em>proof</em> of this result is ready to be formalized; all prerequisites are done"),
(f"{document.userdata['dep_graph']['colors']['proved'][1]} background",
"the <em>proof</em> of this result is formalized"),
(f"{document.userdata['dep_graph']['colors']['fully_proved'][1]} background",
"the <em>proof</em> of this result and all its ancestors are formalized"),
(f"{document.userdata['dep_graph']['colors']['mathlib'][1]} border",
"this is in Mathlib"),
])

document.addPostParseCallbacks(150, make_legend)
Expand Down