{% assign title_separator = site.title_separator | default: '-' | replace: '|', '|' %}
{% if site.url %}
{% assign seo_url = site.url | append: site.baseurl %}
{% endif %}
{% if paginator %}
{% assign seo_title = site.title %}
{% else %}
{% assign seo_title = page.title | append: " " | append: title_separator | append: " " | append: site.title %}
{% endif %}
{% assign seo_title = title | markdownify | strip_html | strip_newlines | escape_once %}
{% if page.canonical_url %}
{% assign canonical_url = page.canonical_url %}
{% else %}
{% assign canonical_url = page.url | replace: "index.html", "" | absolute_url %}
{% endif %}
{% assign seo_description = page.description | default: page.excerpt | default: site.description -%}
{% if seo_description %}
{% assign seo_description = seo_description | markdownify | strip_html | newline_to_br | strip_newlines | replace: '
', ' ' | escape_once | strip %}
{% endif %}
{% if page.cover %}
{% assign og_image = page.cover | absolute_url %}
{% elsif site.og_image %}
{% assign og_image = site.og_image | absolute_url %}
{% endif %}
{% assign og_image = og_image | escape %}
{% if page.date %}
{% assign og_type = "article" %}
{% else %}
{% assign og_type = "website" %}
{% endif %}