1<?php
2/*
3 * Interwiki Formatting Plugin
4 * Copyright (c) 2016 Jay Jeckel
5 * Licensed under the MIT license: https://opensource.org/licenses/MIT
6 * Permission is granted to use, copy, modify, and distribute the work.
7 * Full license information available in the project LICENSE file.
8*/
9
10$conf['ignored_shortcuts'] = 'user skype';
11$conf['strip_query'] = 1;
12$conf['strippable_extensions'] = 'asp htm html php';
13$conf['word_separators'] = '_ : . -';
14$conf['anchor_replacement'] = ' - ';
15$conf['slash_replacement'] = ' - ';
16$conf['capitalize_words'] = 1;
17$conf['capitalize_exceptions'] = 'the of a an and but or for nor are in at';
18
19?>