Sphinx extension to generate OpenGraph metadata (https://ogp.me/)
python -m pip install sphinxext-opengraph
Just add sphinxext.opengraph
to your extensions list in your conf.py
extensions = [
"sphinxext.opengraph",
]
These values are placed in the conf.py of your sphinx project.
Users hosting documentation on Read The Docs do not need to set any of the following unless custom configuration is wanted. The extension will automatically retrieve your site url.
ogp_site_url
- This config option is very important, set it to the URL the site is being hosted on.
ogp_description_length
- Configure the amount of characters taken from a page. The default of 200 is probably good for most people. If something other than a number is used, it defaults back to 200.
ogp_site_name
- This is not required. Name of the site. This is displayed above the title.
ogp_image
- This is not required. Link to image to show.
ogp_image_alt
- This is not required. Alt text for image. Defaults to using
ogp_site_name
or the document's title as alt text, if available. Set toFalse
if you want to turn off alt text completely.
- This is not required. Alt text for image. Defaults to using
ogp_use_first_image
- This is not required. Set to True to use each page's first image, if available. If set to True but no image is found, Sphinx will use
ogp_image
instead.
- This is not required. Set to True to use each page's first image, if available. If set to True but no image is found, Sphinx will use
ogp_type
- This sets the ogp type attribute, for more information on the types available please take a look at https://ogp.me/#types. By default it is set to
website
, which should be fine for most use cases.
- This sets the ogp type attribute, for more information on the types available please take a look at https://ogp.me/#types. By default it is set to
ogp_custom_meta_tags
- This is not required. List of custom html snippets to insert.
ogp_site_url = "http://example.org/"
ogp_image = "http://example.org/image.png"
ogp_site_url = "http://example.org/"
ogp_image = "http://example.org/image.png"
ogp_description_length = 300
ogp_type = "article"
ogp_custom_meta_tags = [
'<meta property="og:ignore_canonical" content="true" />',
]