Skip to content

Instantly share code, notes, and snippets.

@remybach
Created August 9, 2012 11:15
Show Gist options
  • Save remybach/3303344 to your computer and use it in GitHub Desktop.
Save remybach/3303344 to your computer and use it in GitHub Desktop.
Photoshop Sliced HTML to Emailer Replacements
1: Replace
==========================================
<html>.*
.*
.*
.*
.*
.*
.*
<table id=".*" width
==========================================
<table width
2: Replace
==========================================
</table>
.*
.*
.*
==========================================
</table>
3: Replace All
==========================================
(.*)<td>
(.*)<img src="(.*)" (.*) (.*) alt=""></td>
==========================================
$1<td>
$2<a href="" style="border:none;display:block;">
$2 <img src="$3" $4 $5 alt="" border="0" style="border:none;display:block;" />
$2</a>
$1</td>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment