add Threads & Bluesky support #3
3 changed files with 24 additions and 6 deletions
|
@ -1,9 +1,14 @@
|
|||
# ClickAt
|
||||
|
||||
[Shaarli](https://github.com/shaarli/Shaarli/) plugin to make 𝕏 and Fediverse addresses clickable.
|
||||
[Shaarli](https://github.com/shaarli/Shaarli/) plugin to make microblogging
|
||||
social networks (Twitter/𝕏, Threads, Bluesky and Fediverse) addresses clickable.
|
||||
|
||||
## Manual
|
||||
|
||||
1. Clone repository in plugin directory.
|
||||
2. Activate plugin.
|
||||
3. Quote users from Twitter/𝕏 with their `@nic`, and users from the Fediverse with `@nic@server`.
|
||||
3. Quote users from:
|
||||
- Twitter/𝕏 with their `@nic`,
|
||||
- Threads with `@nic@threads.net`,
|
||||
- Bluesky with `@nic.bsky.social`,
|
||||
- Fediverse with `@nic@instance`.
|
||||
|
|
|
@ -1 +1 @@
|
|||
description="Make Twitter and Fediverse addresses clickable."
|
||||
description="Make microblogging social networks (Twitter/𝕏, Threads, Bluesky and Fediverse) addresses clickable."
|
||||
|
|
19
clickat.php
19
clickat.php
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* ClickAt
|
||||
*
|
||||
* This plugin makes Twitter and Fediverse addresses clickable.
|
||||
* This plugin makes microblogging social networks (Twitter/𝕏, Threads, Bluesky and Fediverse) addresses clickable.
|
||||
*/
|
||||
|
||||
use Shaarli\Config\ConfigManager;
|
||||
|
@ -13,8 +13,21 @@ function hook_clickat_render_linklist($data)
|
|||
{
|
||||
|
||||
foreach ($data['links'] as &$value) {
|
||||
$value['description'] = preg_replace('/\ @([\w\d]+)@([\w\d_\-\.]+)/',' <a href="https://\2/@\1">@\1</a>',$value['description']);
|
||||
$value['description'] = preg_replace('/\ @([\w\d]+)/',' <a href="https://twitter.com/\1">@\1</a>',$value['description']);
|
||||
$value['description'] = preg_replace(
|
||||
'/\ @([\w\d]+).bsky.social/',
|
||||
' <a href="https://bsky.app/profile/\1.bsky.social">@\1.bsky.social</a>',
|
||||
$value['description']
|
||||
);
|
||||
$value['description'] = preg_replace(
|
||||
'/\ @([\w\d]+)@([\w\d_\-\.]+)/',
|
||||
' <a href="https://\2/@\1">@\1</a>',
|
||||
$value['description']
|
||||
);
|
||||
$value['description'] = preg_replace(
|
||||
'/\ @([\w\d]+)/',
|
||||
' <a href="https://twitter.com/\1">@\1</a>',
|
||||
$value['description']
|
||||
);
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue