SEO
How LibDoc’s configuration and pages parameters are applied for Search Engine Optimization
2025-05-23
ITADS
Table of content
There are combinations of parameters used for SEO. For each page:
Title
title
is propagated on the following metadata and tags
<title></title>
<meta itemprop="name" content="">
<meta name="application-name" content="">
<meta name="msapplication-tooltip" content="">
<meta property="og:title" content="">
<meta name="twitter:title" content="">
<meta name="apple-mobile-web-app-title" content="">
Page title is displayed following these ordered priorities:
- By default page title the Eleventy page
inputPath
if nothing is set into the front matter. - If
eleventyNavigation.key
is set into the front matter, page title gets this value. - If
title
is set into front matter, it overrideseleventyNavigation.key
as title for the page.
Description
description
is propagated on the following metadata
<meta name="description" itemprop="description" content="">
<meta property="og:description" content="">
<meta name="twitter:description" content="">
Page description is displayed following these ordered priorities:
- By default page description is empty if nothing is set into the front matter.
- If
description
is set into the front matter, page description gets this value.
Open Graph Image
og:image
is propagated on the following metadata
<meta property="og:image" content="">
<meta name="twitter:image" content="">
Open Graph image is displayed following these ordered priorities:
- By default Open Graph Image is the value
libdocConfig.ogImageUrl
if nothing is set into the front matter. - If
ogImageUrl
is set into the front matter, page Open Grapg Image gets this value.
Favicon
favicon
is propagated on the following metadata
<link rel="icon" type="image/png" href="">
Favicon is displayed following these ordered priorities:
- By default Favicon URL is the value
libdocConfig.faviconUrl
if nothing is set into the front matter. - If
faviconUrl
is set into the front matter, page Favicon URL gets this value.
Author
author
is propagated on the following metadata
<meta name="author" content="">
Author is displayed following these ordered priorities:
- By default author’s value is
libdocConfig.author
if nothing is set into the front matter. - If
author
is set into the front matter, page’s author gets this value.