I've been recently implementing django-meta into a project and noticed that <title> and <meta property="og:title" /> both use the same exact variable (title) as opposed to description, which has a specific, optional og_description, that falls back to description.
I'm wondering if there's intention behind this (maybe I'm unaware of a best practice?) or if a PR to making it more like the description property would be welcome?
I've been recently implementing
django-meta
into a project and noticed that<title>
and<meta property="og:title" />
both use the same exact variable (title
) as opposed todescription
, which has a specific, optionalog_description
, that falls back todescription
.I'm wondering if there's intention behind this (maybe I'm unaware of a best practice?) or if a PR to making it more like the
description
property would be welcome?Thanks!