-
Notifications
You must be signed in to change notification settings - Fork 2
Fix broken link checker workflow #1147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,10 +3,10 @@ | |||||
| <!-- markdownlint-disable MD049 --> | ||||||
|
|
||||||
| This section details the investment and asset retention decision process, which is applied within | ||||||
| step 2 of the [overall MUSE2 workflow]. This process determines which new assets to build and | ||||||
| which existing assets to retain to meet system needs over time. In the overall workflow, dispatch | ||||||
| optimisation is used to identify *physical needs* by quantifying demand profiles for commodities of | ||||||
| interest. | ||||||
| step 2 of the [overall MUSE2 workflow][framework-overview]. This process determines which new assets | ||||||
| to build and which existing assets to retain to meet system needs over time. In the overall | ||||||
| workflow, dispatch optimisation is used to identify *physical needs* by quantifying demand profiles | ||||||
| for commodities of interest. | ||||||
|
|
||||||
| ## Commodity prices | ||||||
|
|
||||||
|
|
@@ -23,7 +23,7 @@ the preceding MSY. When the `pricing_strategy` option is set to `scarcity_adjust | |||||
| shadow prices for each commodity adjusted to remove the impact of binding capacity constraints. | ||||||
|
|
||||||
| Note: there is an option to iterate over each year so that investment decisions are based on | ||||||
| equilibrium prices in the _current year_, in what's referred to as the "[ironing-out loop]". | ||||||
| equilibrium prices in the _current year_, in what's referred to as the "[ironing-out loop][framework-overview]". | ||||||
| In this case, \\( \lambda\_{c,r,t} \\) will reflect prices from previous iteration of the | ||||||
| ironing-out loop. | ||||||
|
|
||||||
|
|
@@ -203,6 +203,5 @@ For each asset option: | |||||
| AFC \* cap_r + \sum_{t} act_t \* AC_t \\)), divided by the annual output | ||||||
| \\( \sum_t act_t \\). | ||||||
|
|
||||||
| [overall MUSE2 workflow]: ./README.md#framework-overview | ||||||
| [framework-overview]: https://energysystemsmodellinglab.github.io/MUSE2/model/index.html#framework-overview | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we have to use a URL here rather than an internal link?
|
||||||
| [framework-overview]: https://energysystemsmodellinglab.github.io/MUSE2/model/index.html#framework-overview | |
| [framework-overview]: ./README.md#framework-overview |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern
^book/404.html$might not match the file path as lychee sees it. The existing pattern^targetis a prefix match (no$anchor), while your new pattern anchors to both start and end.Depending on how lychee resolves paths, you might need
^book/404\.html$(with escaped dot), or^.*book/404\.html$to allow for any prefix. Consider testing this locally to ensure it actually excludes the intended file. If it doesn't work, you might need to use.lycheeignoreinstead of--exclude-path.