Change log LibDoc v0.13.0

Custom Open Graph on tag pages

2026-02-14

ITADS

Release v0.13.0 on Github

It is possible to set a custom Open Graph Image URL to any tag. For example, assuming you have a tag called foo, then you have an URL /tags/foo, assigning an Open Graph image URL to this page can be set like follows through your settings.json:

{
    "ogImageUrlForEachTag": {
        "foo": "https://example.com/path/to/custom-open-graph-image.avif"
    }
}

For example on current website, you can view an example of a custom Open Graph Image for tag page change log on this website. Here are the involved lines from the settings.json file:

{
    "ogImageUrlForEachTag": {
        "changelog": "https://og-image.vercel.app/**11ty%20LibDoc%20Change%20Log**.png?theme=dark&md=1&fontFamily=source-sans-pro&fontSize=100px"
    }
}