1<?php
2/**
3 * Default configuration for linkbonus plugin
4 *
5 * @license:    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author:     Luis Machuca <luis.machuca [at] gulix.cl>
7 */
8
9//@ priority: if set to 1 will catch more links but may conflict with inbuilt syntax
10// values: 0 (default, equals to sortOrder=300), 1 (sortOrder=200)
11$conf['priority']   = 0;
12
13//@ titlelimit: how to limit the external link title
14// values: no (default), %d (number of words)
15$conf['titlelimit'] = 'no';
16
17//@ connect_timeout: how long to wait to fetch a remote page's info.
18// values: 0.0 < value <= 5.0 (seconds); defaults to 1.0
19$conf['connect_timeout'] = '1.0';
20
21//@ link_favicon: enable or disable the ability to link favicons
22// values: boolean; default false (do not allow favicons)
23$conf['link_favicons']   = false;
24
25//@ in_formatting: enable or disable italics/bold inside links
26// values: boolean; defaults true (allow bolds/italics)
27$conf['in_formatting']   = true;
28