Skip to content

Instantly share code, notes, and snippets.

@erikreagan
Created November 14, 2009 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikreagan/234822 to your computer and use it in GitHub Desktop.
Save erikreagan/234822 to your computer and use it in GitHub Desktop.
#!/usr/bin/env php
<?php
// this is a TextMate command that converts { and } characters to the HTML entities so they don't get parsed in docs
$matches = array('{','}');
$replacements = array('&#123;','&#125;');
echo str_replace($matches,$replacements,$_ENV['TM_SELECTED_TEXT']);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment