Skip to content

Instantly share code, notes, and snippets.

@MattSkala
Created March 21, 2013 08:22
Show Gist options
  • Save MattSkala/5211497 to your computer and use it in GitHub Desktop.
Save MattSkala/5211497 to your computer and use it in GitHub Desktop.
Linkify helper for Nette. It converts all links in text ito clickable <a> elements.
<?php
$this->template->registerHelper('linkify', function($text) {
return preg_replace('"\b(http(s)?://\S+)"', '<a href="$1">$1</a>', $text);
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment