Instant Views
Instantly preview your content from within Telegram.
After Dark provides a template guide to enable Telegram Instant Views for posts. Use it to create an Instant View Template on the Telegram site:
# use 2.0
~version: "2.0"
# enable for items in the post section
?path: /post/.+
# define required elements
title: //*[@itemprop="headline"]
body: //*[@itemprop="articleBody"]
# add optional site name and subtitle
subtitle: //*[@itemprop="description"][normalize-space()]
site_name: //*[@itemprop="url"][@href="/"]
# if author exists, define name and url
?exists: //*[@itemprop="author"]
author: //*[@itemprop="author"]
author_url: //*[@itemprop="url"]/@href
# add optional telegram channel
channel: //*[@name="telegram:channel"]/@content
# if cover exists, define images
?exists: //article/meta[@itemprop="image"]/@content
cover: //article/header/figure[@itemprop="image"]
image_url: $cover/self::img/@src
# post date extracted automatically
Preview your results on the Telegram site:
Additionally, if your site has a telegram channel, you can specify it by setting the following in your site config:
[params.seo]
telegram_channel = "channelname" # omit the leading `@`
Specifying a channel name allows Telegram users to join your channel with a single click from within an Instant View.
See the Instant View on Telegram for additional information.