I’m using the internal linking within the markdown editor:
[Post](october://entry-edcd102e-0525-4e4d-b07e-633ae6c18db6@link/173?cms_page=blog%2Fpost)
CMS Page setup of the Blog Post:
url = "/:category/:subcat/:slug"
layout = "blog"
title = "Blog Post"
meta_title = "{{ blog.title }} - Blog"
This is how I render the markdown content
{% if post.entry_type == 'markdown_post' %}
{{ post.content|md|content }}
{% else %}
{{ post.content|content }}
{% endif %}
Output link to blog post:
http://localhost:8888/site/en/default/default/whv-australia
I’ve tested to internal link directly to a category.
Output link to category:
http://localhost:8888/site/en/oceania/australia
And apparently, this issue is in the Sitemap as well (link to )
Does anyone know how to solve this?