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
There is a problem: When we include new plots in report/report.md and they are produced only in some scenarios, those scenarios where they are missing (reduced scenarios without heat, e.g.), will fail to build a report.
Tried to set up a pandoc lua filter - a function that checks if a resource exists which replaces the part in the template with the caption if it does not find it. But it does not work (yet?):
function Image(el)
local path = pandoc.utils.stringify(PANDOC_STATE.resource_path) .. el.src
local r = io.open(path, 'rb')
if r then
return el
else
return el.caption
end
end
To report scenarios with all represented sectors, include these:
The text was updated successfully, but these errors were encountered: