additional_plugins/serendipity_event_regexpmarkup/regexps/Twitter.php
Garvin Hicking ab02bb4af4 Remove $Id$
2011-12-25 10:07:20 +01:00

9 lines
249 B
PHP

<?php # $Id$
// Twitter preg replace markup
// turns usernames like @user to twitter-links
//
$regexpArray = array(
'SearchArray' => array("/[^\w]@([\w]+)/i"),
'ReplaceArray'=> array('<a href="http://www.twitter.com/\1">\1</a>')
);