Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use sphinxext-opengraph to generate OpenGraph metadata #99931

Merged
merged 7 commits into from
Dec 5, 2022

Conversation

hugovk
Copy link
Member

@hugovk hugovk commented Dec 1, 2022

For python/docs-community#63.

Similar to python/devguide#953 already deployed for the devguide.

Add Open Graph metadata using https://github.com/wpilibsuite/sphinxext-opengraph.

This adds <meta name="description"> and <meta property="og:*"> metadata, such as:

<meta property="og:title" content="What’s New In Python 3.12" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://hugovk-cpython.readthedocs.io/en/add-og-metadata2/whatsnew/3.12.html" />
<meta property="og:site_name" content="Python documentation" />
<meta property="og:description" content="Release, 3.12.0a2,, Date, December 01, 2022,. This article explains the new features in Python 3.12, compared to 3.11. For full details, see the changelog. Summary – Release highlights: Important d..." />
<meta property="og:image" content="https://hugovk-cpython.readthedocs.io/en/add-og-metadata2/_static/og-image.png" />
<meta property="og:image:alt" content="Python documentation" />
<meta name="description" content="Release, 3.12.0a2,, Date, December 01, 2022,. This article explains the new features in Python 3.12, compared to 3.11. For full details, see the changelog. Summary – Release highlights: Important d..." />
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">

Demo

With another branch, I temporarily changed this so the image link works:

-ogp_site_url = 'https://docs.python.org/3/'
+ogp_site_url = 'https://hugovk-cpython.readthedocs.io/en/add-og-metadata2/'

https://hugovk-cpython.readthedocs.io/en/add-og-metadata2/whatsnew/3.12.html

SEO

Helps SEO by adding <meta name="description">.

SEO measurements using Google's PageSpeed Insights (using main on my RTD vs. my demo on RTD to keep as many hosting variables the same):

Before: 66 After: 81

Notably fixes "Document does not have a meta description".

Sharing

This also improves the previews when sharing on Facebook, Slack, Discord, Twitter, etc.

For example, using the Facebook sharing deebugger:

Before After

Here's both shared on Slack:

image

OG image

Like python/devguide#953, generated with https://github.com/hugovk/pixel-tools/blob/1618b2a09bd5998899958856b7fef4503f95cba2/og_image.py using the font from https://github.com/python/pythondotorg/tree/main/static/fonts:

python og_image.py --text CPython --logo tests/python-logo.png --size 210 --font ../pythondotorg/static/fonts/FluxRegular.ttf
...
optipng -o7 -zm1-9 Doc/_static/og-image.png

What text should we have in the image? The PR currently has "CPython", here's a few other options (all font size 210 except the last is 180). For multiple words, I could adjust og_image.py to do multiline text too.

Note

The homepage and download pages do not get metadata, for example:

I think it's because because they're additional pages added via conf.py like this?

# Additional templates that should be rendered to pages.
html_additional_pages = {
    'download': 'download.html',
    'index': 'indexcontent.html',
}

If these also need it, should they be dealt with separately?

Skip issue or news?

We have python/docs-community#63, should we also have an issue in this repo? And news?

@hugovk hugovk added the docs Documentation in the Doc dir label Dec 1, 2022
Copy link
Member

@CAM-Gerlach CAM-Gerlach left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Big picture comments (literally):

  • The image is rather big, and takes up a large amount of space in the preview disproportionate (IMO) relative to its value for readers. Can we make it a lot smaller (especially in height), trim off the borders and/or otherwise ensure it is scaled down.
  • Of the options listed, I prefer Python Docs, but I imagine the PSF trademarks committee might need to review it if its something other than one of the official logotypes. @malemburg ?
  • We should backport it to at least the primary/default version site for this to have proper effect, but can we add the extension in a way that will gracefully fallback if the plugin is not installed (e.g. on downstream redistributors, who are unlikely to need, want or have it)?

@ezio-melotti
Copy link
Member

The image is rather big, and takes up a large amount of space in the preview disproportionate (IMO) relative to its value for readers.

IIRC this is the standard/recommended size, but otherwise I agree that it could be smaller.

Of the options listed, I prefer Python Docs

+1

but I imagine the PSF trademarks committee might need to review it if its something other than one of the official logotypes. @malemburg ?

We have already checked with them while working on the Devguide PR and mentioned that we are planning to do the same on related repos, so everything should be already ok on this front.

@hugovk
Copy link
Member Author

hugovk commented Dec 2, 2022

Yes, the required minimum is 200 x 200 and recommended minimum is 1200 x 630, with 1.91:1 aspect ratio.

https://developers.facebook.com/docs/sharing/webmasters/images says:

Requirements

  • The minimum allowed image dimension is 200 x 200 pixels.
  • The size of the image file must not exceed 8 MB.
  • Use images that are at least 1200 x 630 pixels for the best display on high resolution devices. At the minimum, you should use images that are 600 x 315 pixels to display link page posts with larger images.
  • If your image is smaller than 600 x 315 px, it will still display in the link page post, but the size will be much smaller.
  • We've also re-designed link page posts so that the aspect ratio for images is the same across desktop and mobile Feed. Try to keep your images as close to 1.91:1 aspect ratio as possible to display the full image in Feed without any cropping.

As a quick test, autocropping to 1022 x 330:

og-image

https://hugovk-cpython.readthedocs.io/en/add-og-metadata2/whatsnew/3.12.html

Gives:

image

https://developers.facebook.com/tools/debug/?q=https%3A%2F%2Fhugovk-cpython.readthedocs.io%2Fen%2Fadd-og-metadata2%2Fwhatsnew%2F3.12.html

@hugovk
Copy link
Member Author

hugovk commented Dec 2, 2022

  • We should backport it to at least the primary/default version site for this to have proper effect, but can we add the extension in a way that will gracefully fallback if the plugin is not installed (e.g. on downstream redistributors, who are unlikely to need, want or have it)?

@AA-Turner Do you know if this is possible with Sphinx?

@hugovk
Copy link
Member Author

hugovk commented Dec 2, 2022

"Python Docs", single line or multiline?

(Font sizes 160, 210, 230)

@CAM-Gerlach
Copy link
Member

Yes, the required minimum is 200 x 200 and recommended minimum is 1200 x 630, with 1.91:1 aspect ratio.

Okay; could you try to output it at 482 x 200 and see if it displays smaller? Or at the recommended minimum size?

@AA-Turner Do you know if this is possible with Sphinx?

conf.py is just a Python script; couldn't you do

try:
    import sphinxext.opengraph
except ImportError:
    pass
else:
    extensions.append("sphinxext.opengraph")

"Python Docs", single line or multiline?

I guess multiline, if its a mixed aspect ratio. If we must use the space, may as well get as much out of it as we can...

@CAM-Gerlach
Copy link
Member

I added skip-issue since the issue is on another repo, but left out skip-news since we might want to write a news entry if we're adding a new docs dependency, if an optional one.

@hugovk
Copy link
Member Author

hugovk commented Dec 2, 2022

Yes, the required minimum is 200 x 200 and recommended minimum is 1200 x 630, with 1.91:1 aspect ratio.

Okay; could you try to output it at 482 x 200 and see if it displays smaller?

Here's how 482 x 200 looks:

image

image

(Note to self: python og_image.py --text "Python Docs" --logo tests/python-logo.png --font ../pythondotorg/static/fonts/FluxRegular.ttf --text "Python Docs" --size 100 -W 482 -H 200 -lw 15 -lh 15)

This is smaller because Facebook says:

If your image is smaller than 600 x 315 px, it will still display in the link page post, but the size will be much smaller.


Or at the recommended minimum size?

The recommended minimum 1200 x 630 that we started with. The "absolute" minimum is 200 x 200, it's just the icon and looks like:

og-image-200x200

image

(python og_image.py --text "Python Docs" --logo tests/python-logo.png --font ../pythondotorg/static/fonts/FluxRegular.ttf --text "Python Docs" --size 100 -W 200 -H 200 -lw 0 -lh 0)


conf.py is just a Python script; couldn't you do

try:
    import sphinxext.opengraph
except ImportError:
    pass
else:
    extensions.append("sphinxext.opengraph")

Ah yes, thanks :)

I guess multiline, if its a mixed aspect ratio. If we must use the space, may as well get as much out of it as we can...

👍

@malemburg
Copy link
Member

but I imagine the PSF trademarks committee might need to review it if its something other than one of the official logotypes. @malemburg ?

We have already checked with them while working on the Devguide PR and mentioned that we are planning to do the same on related repos, so everything should be already ok on this front.

Please send in the final version for official approval. The versions I'm seeing on this ticket mostly appear fine. Just please make sure that the logo is not shown cut-off in parts. I know that this is difficult with social media links, but it would be good to at least have the complete logo shown in the previews.

@CAM-Gerlach
Copy link
Member

CAM-Gerlach commented Dec 2, 2022

The smaller version takes up a lot less unnecessary space, though it does omit the "Python Docs" nameplate/logotype. Naively to me, the former would seem worth it, but I don't have the same background in the uses of opengraph metadata, beyond anecdotal experience with the displayed previews a handful of common places. What do others think?

@hugovk
Copy link
Member Author

hugovk commented Dec 4, 2022

Here's a whole load of demos with various sizes:

I think the square logo version without the "Python Docs" text is quite good, we're not showing a big banner photo and it shows more of the relevant text too.

400x400 seems to be the upper bound to still show as a square logo:

image

Here's 200x200, looks about the same:

image

In Discord:

image

In Slack:

image

So I think 200x200 is a good one to use. I'll update this PR and add a bit of padding too so it's not too close to the border for Facebook.

@hugovk
Copy link
Member Author

hugovk commented Dec 4, 2022

Updated to 200x200 logo with 5px padding, demo at https://hugovk-cpython.readthedocs.io/en/add-og-metadata2/whatsnew/3.12.html

image

@ezio-melotti
Copy link
Member

One data point that might be relevant to the discussion is that (at least on Discord) clicking on the image just opens the image -- not the link.

This behavior is useful when sharing cat pics from your favorite social media website, since you mostly care about the pic itself (and you would generally be better off avoiding the comment section). However in our case we don't care about the image itself, and having such a big image will just increases the chances that the user will click that instead of the actual link.

IOW, the 200x200 logo might be a better fit for our use-case.

Copy link
Member

@CAM-Gerlach CAM-Gerlach left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, aside from adding relevant links to the NEWS entry. Thanks @hugovk !

@CAM-Gerlach
Copy link
Member

CAM-Gerlach commented Dec 5, 2022

One data point that might be relevant to the discussion is that (at least on Discord) clicking on the image just opens the image -- not the link.

Hmm, interesting...I wasn't aware of this behavior, though this tends to imply that either it isn't widespread, or because I as a user have never actually tried to click the image.

Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
hugovk and others added 2 commits December 5, 2022 12:21
@miss-islington
Copy link
Contributor

Thanks @hugovk for the PR 🌮🎉.. I'm working now to backport this PR to: 3.11.
🐍🍒⛏🤖 I'm not a witch! I'm not a witch!

@bedevere-bot
Copy link

GH-100115 is a backport of this pull request to the 3.11 branch.

@bedevere-bot bedevere-bot removed the needs backport to 3.11 only security fixes label Dec 8, 2022
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Dec 8, 2022
(cherry picked from commit f49c735)

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
@hugovk
Copy link
Member Author

hugovk commented Dec 8, 2022

Backporting to 3.11, so we get it under the default /3/ as well.

miss-islington added a commit that referenced this pull request Dec 8, 2022
(cherry picked from commit f49c735)

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs Documentation in the Doc dir skip issue
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants