Ataraxia: Adding links to tab_contents

I’m new to Zola and am playing around with the ataraxia zola theme, using the creator’s website as a starting point.

Now I’m trying to figure out how to add links to tab_contents, but no matter what I try, I can’t get it to work. If I put [example](www.example.com) inside the quotation characters, it doesn’t render the code at all. If I try to put it outside of the quotes, the entire tab_nav_box building fails.

Hope you can give me some suggestions.

As a new forum user I can only add two links to a post, but when I was talking about tab_contents, I meant this code

So basically the text that is ‘imported’, is done as

{%- for content in tab_contents -%}
(...)
   {{ content | safe }}
(...)
{%- endfor -%}

The content should be parsed as markdown in order for it to show imaged links (or any link for that matter). I got it to work by changing {{ content | safe }} to:

{{ content | markdown(inline=true) | safe }}

So. Issue solved. :+1: