function ProcessEscapes in Typogrify 5        
                          
                  
                        Same name and namespace in other branches
- 6 smartypants.php \ProcessEscapes()
- 7 smartypants.php \ProcessEscapes()
5 calls to ProcessEscapes()
  - convert_characters in ./unicode-conversion.php
- SmartDashes in ./smartypants.php
- SmartEllipses in ./smartypants.php
- SmartQuotes in ./smartypants.php
- SmartyPants in ./smartypants.php
File
 
   - ./smartypants.php, line 618
Code
function ProcessEscapes($_) {
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  $_ = str_replace(array(
    '\\\\',
    '\\"',
    "\\'",
    '\\.',
    '\\-',
    '\\`',
  ), array(
    '\',
    '"',
    ''',
    '.',
    '-',
    '`',
  ), $_);
  return $_;
}