• /
    • SEO

SEO

How LibDoc’s configuration and pages parameters are applied for Search Engine Optimization

2025-05-23

ITADS

Table of content
  1. Title
  2. Description
  3. Open Graph Image
  4. Favicon
  5. Author

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:

  1. By default page title the Eleventy page inputPath if nothing is set into the front matter.
  2. If eleventyNavigation.key is set into the front matter, page title gets this value.
  3. If title is set into front matter, it overrides eleventyNavigation.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:

  1. By default page description is empty if nothing is set into the front matter.
  2. 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:

  1. By default Open Graph Image is the value libdocConfig.ogImageUrl if nothing is set into the front matter.
  2. 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:

  1. By default Favicon URL is the value libdocConfig.faviconUrl if nothing is set into the front matter.
  2. 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:

  1. By default author’s value is libdocConfig.author if nothing is set into the front matter.
  2. If author is set into the front matter, page’s author gets this value.