I am trying include a certain markdown file that is in the root directory into another file that is in a sub-directory.
I tried many different syntaxes:
{% include_relative ../root/file %}
{% include_relative /../root/file %}
{% include_relative ./../root/file %}
{% include_relative /./../root/file %}
(and others)
Is there any way to go back to parent directories in Jekyll using Liquid Tags?