diff options
Diffstat (limited to 'templates/layout.html')
-rw-r--r-- | templates/layout.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/layout.html b/templates/layout.html index c0f52cb..47184b3 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -13,10 +13,10 @@ <meta name="generator" content="www.gitbook.io"> {% if progress.current.next and progress.current.next.path %} - <link rel="next" href="{{ basePath }}/{{ progress.current.next.path }}" /> + <link rel="next" href="{{ basePath }}/{{ progress.current.next.path|mdLink }}" /> {% endif %} {% if progress.current.prev and progress.current.prev.path %} - <link rel="prev" href="{{ basePath }}/{{ progress.current.prev.path }}" /> + <link rel="prev" href="{{ basePath }}/{{ progress.current.prev.path|mdLink }}" /> {% endif %} <meta property="og:title" content="{% block title %} | {{ title }}{% endblock %}"> |