unimal-jp / spear

The spear OSS repository
https://late-cloud-6411.spearly.app
MIT License
10 stars 1 forks source link

Replace SEO Ttitle when existing title tag. #210

Closed mantaroh closed 8 months ago

mantaroh commented 8 months ago

Overview

Example:

<html>
  <head>
   <title>Test site</title>
  </head>
  <body>
    <div cms-item cms-content-type="blog" cms-content="first-blog"
      <spear-seo
         title="{%= blog_title %}"
       /></spear-seo>
    </div>
  </body>
</html>

An above example has <title>Test site</title>, then spear will generate the following HTML:

<html>
  <head>
   <title>First Blog Title!</title>
  </head>
  <body>
    <div>
    </div>
  </body>
</html>
mantaroh commented 8 months ago

@yoannes @qst-exe @KeisukeMoriyama

Somebody please review to this PR 🙏🏼