Is there a way to manage the case of a non-existing file while running load_data?
{% if exists(path="data/data.toml" %}
{% set data = load_data(path="data/data.toml") %}
{% else %}
{% set data = load_data(path="data/default.toml") %}
{% end %}
The use case is that I want to load a data file for each author in my authors taxonomy but I do not want the compilation to stop if an author does not have an associated data file.