2021-02-17 03:30:21 +09:00
|
|
|
The Embed plugin for using and representing both Open Graph and oEmbed data.
|
2016-01-23 01:01:24 +09:00
|
|
|
|
2021-02-17 03:30:21 +09:00
|
|
|
See: https://ogp.me/ and https://www.oembed.com/
|
2016-01-23 01:01:24 +09:00
|
|
|
|
|
|
|
Installation
|
|
|
|
============
|
2021-02-17 03:30:21 +09:00
|
|
|
This plugin is enabled by default.
|
2016-01-23 01:01:24 +09:00
|
|
|
|
|
|
|
Settings
|
|
|
|
========
|
|
|
|
width: Maximum width of the thumbnail in pixels.
|
|
|
|
height: Maximum height of the thumbnail in pixels.
|
|
|
|
show_html: Whether to show HTML oEmbed data.
|
|
|
|
domain_whitelist: Array of regular expressions. Always escape your dots and end your strings.
|
|
|
|
check_whitelist: Whether to check the domain_whitelist.
|
|
|
|
|
|
|
|
Example
|
|
|
|
=======
|
2021-02-17 03:30:21 +09:00
|
|
|
|
|
|
|
```
|
2016-01-23 01:01:24 +09:00
|
|
|
$config['thumbnail']['width'] = 42;
|
|
|
|
$config['thumbnail']['height'] = 42;
|
|
|
|
$config['attachments']['show_html'] = true;
|
2021-02-17 03:30:21 +09:00
|
|
|
addPlugin('Embed', [
|
|
|
|
'domain_whitelist' => [
|
2016-01-23 01:01:24 +09:00
|
|
|
'^i\d*\.ytimg\.com$' => 'YouTube',
|
|
|
|
'^i\d*\.vimeocdn\.com$' => 'Vimeo'
|
2021-02-17 03:30:21 +09:00
|
|
|
],
|
2016-01-23 01:01:24 +09:00
|
|
|
'check_whitelist' => true
|
2021-02-17 03:30:21 +09:00
|
|
|
]
|
|
|
|
);
|
|
|
|
```
|