Skip to content

Commit

Permalink
remove monospace font in decision tree
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoDiepers committed Feb 20, 2025
1 parent ee39a0f commit c796946
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docs/content/decisiontree.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ flowchart TD
%% Define node classes
classDef decision fill:#3fb1c5,color:black,stroke:none;
classDef lcaType fill:#9c5ffd,color:black,stroke:none;
classDef codeNode fill:#DBDBDB,text-align:left,color:black,stroke:none,font-family:monospace;
classDef codeNode fill:#DBDBDB,text-align:left,color:black,stroke:none;
TimingDecision{{"Do temporal aspects matter?"}}:::decision
AspectDecision{{"Which aspects matter?"}}:::decision
Expand All @@ -16,15 +16,14 @@ flowchart TD
ProspectiveLCA("Prospective LCA"):::lcaType
RetrospectiveLCA("Retrospective LCA"):::lcaType
TimeExplicitLCA("Time-explicit LCA"):::lcaType
CodeTimeExplicit("tlca = bw_timex.TimexLCA(...)        "):::codeNode
%%non-breaking space used to make boxes wide enough for mono-spaced font, otherwise cut off.
CodeTimeExplicit("tlca = bw_timex.TimexLCA(...)"):::codeNode
DynamicLCA("Dynamic LCA"):::lcaType
DynamicLCIADecision{{"Dynamic LCIA?"}}:::decision
CodeStaticLCIA("tlca.lci(build_dynamic_biosphere=False)           \n tlca.static_lcia()\nprint(tlca.static_score)"):::codeNode
CodeDynamicLCI("tlca.lci(build_dynamic_biosphere=True)           "):::codeNode
CodeStaticLCIA("tlca.lci(build_dynamic_biosphere=False)\n tlca.static_lcia()\nprint(tlca.static_score)"):::codeNode
CodeDynamicLCI("tlca.lci(build_dynamic_biosphere=True)"):::codeNode
BackgroundDecision{{"Interested \n in background system \n contributions?"}}:::decision
CodeDynamicLCIA("tlca.dynamic_lcia()\nprint(tlca.dynamic_score)        "):::codeNode
CodeDisaggregatedLCIA("tlca.dynamic_lcia(use_disaggregated_background=True)             \nprint(tlca.dynamic_score)"):::codeNode
CodeDynamicLCIA("tlca.dynamic_lcia()\nprint(tlca.dynamic_score)"):::codeNode
CodeDisaggregatedLCIA("tlca.dynamic_lcia(use_disaggregated_background=True)\nprint(tlca.dynamic_score)"):::codeNode
Expand Down

0 comments on commit c796946

Please sign in to comment.