Below are elements that are expected to be in a Photoshop pattern library file.
- Headers (h1 - h5)
- Paragraphs
- Lead Copy
- Unordered List
| # colorize | |
| export CLICOLOR=1 | |
| #export LSCOLORS=exfxCxDxbxegedabagacad | |
| DIR=ex | |
| SYM_LINK=fx | |
| SOCKET=Cx | |
| PIPE=Dx | |
| EXE=cx | |
| BLOCK_SP=eg |
| UPDATE wp_options SET option_value = replace(option_value, '${1:OLD_SITE_URL}', '${2:NEW_SITE_URL}') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
| UPDATE wp_posts SET guid = replace(guid, '$1','$2'); | |
| UPDATE wp_posts SET post_content = replace(post_content, '$1', '$2'); | |
| UPDATE wp_postmeta SET meta_value = replace(meta_value, '$1', '$2'); |
| jQuery.fn.spin = (opts) -> | |
| if opts != false | |
| opts = | |
| className: 'js-spinner' | |
| lines: 13 | |
| length: 5 | |
| width: 3 | |
| radius: 7 | |
| speed: 1.2 | |
| trail: 50 |