Created
October 23, 2013 02:47
-
-
Save coopermayne/7111819 to your computer and use it in GitHub Desktop.
eruby snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Some useful Unicode entities | |
| # Non-Breaking Space | |
| snippet nbs | |
| | |
| # ← | |
| snippet left | |
| ← | |
| # → | |
| snippet right | |
| → | |
| # ↑ | |
| snippet up | |
| ↑ | |
| # ↓ | |
| snippet down | |
| ↓ | |
| # ↩ | |
| snippet return | |
| ↩ | |
| # ⇤ | |
| snippet backtab | |
| ⇤ | |
| # ⇥ | |
| snippet tab | |
| ⇥ | |
| # ⇧ | |
| snippet shift | |
| ⇧ | |
| # ⌃ | |
| snippet control | |
| ⌃ | |
| # ⌅ | |
| snippet enter | |
| ⌅ | |
| # ⌘ | |
| snippet command | |
| ⌘ | |
| # ⌥ | |
| snippet option | |
| ⌥ | |
| # ⌦ | |
| snippet delete | |
| ⌦ | |
| # ⌫ | |
| snippet backspace | |
| ⌫ | |
| # ⎋ | |
| snippet escape | |
| ⎋ | |
| # Generic Doctype | |
| snippet doctype HTML 4.01 Strict | |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
| "http://www.w3.org/TR/html4/strict.dtd"> | |
| snippet doctype HTML 4.01 Transitional | |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
| "http://www.w3.org/TR/html4/loose.dtd"> | |
| snippet doctype HTML 5 | |
| <!DOCTYPE HTML> | |
| snippet doctype XHTML 1.0 Frameset | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| snippet doctype XHTML 1.0 Strict | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| snippet doctype XHTML 1.0 Transitional | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| snippet doctype XHTML 1.1 | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | |
| "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
| # HTML Doctype 4.01 Strict | |
| snippet docts | |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
| "http://www.w3.org/TR/html4/strict.dtd"> | |
| # HTML Doctype 4.01 Transitional | |
| snippet doct | |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
| "http://www.w3.org/TR/html4/loose.dtd"> | |
| # HTML Doctype 5 | |
| snippet doct5 | |
| <!DOCTYPE HTML> | |
| # XHTML Doctype 1.0 Frameset | |
| snippet docxf | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> | |
| # XHTML Doctype 1.0 Strict | |
| snippet docxs | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| # XHTML Doctype 1.0 Transitional | |
| snippet docxt | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| # XHTML Doctype 1.1 | |
| snippet docx | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | |
| "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
| snippet html | |
| <html> | |
| ${1} | |
| </html> | |
| snippet xhtml | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| ${1} | |
| </html> | |
| snippet body | |
| <body> | |
| ${1} | |
| </body> | |
| snippet head | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"`Close()`> | |
| <title>${1:`substitute(Filename('', 'Page Title'), '^.', '\u&', '')`}</title> | |
| ${2} | |
| </head> | |
| snippet title | |
| <title>${1:`substitute(Filename('', 'Page Title'), '^.', '\u&', '')`}</title>${2} | |
| snippet script | |
| <script type="text/javascript" charset="utf-8"> | |
| ${1} | |
| </script>${2} | |
| snippet scriptsrc | |
| <script src="${1}.js" type="text/javascript" charset="utf-8"></script>${2} | |
| snippet style | |
| <style type="text/css" media="${1:screen}"> | |
| ${2} | |
| </style>${3} | |
| snippet base | |
| <base href="${1}" target="${2}"`Close()`> | |
| snippet r | |
| <br`Close()[1:]`> | |
| snippet div | |
| <div class="${1:name}"> | |
| ${2} | |
| </div> | |
| snippet divid | |
| <div id="${1:name}"> | |
| ${2} | |
| </div> | |
| # Embed QT Movie | |
| snippet movie | |
| <object width="$2" height="$3" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" | |
| codebase="http://www.apple.com/qtactivex/qtplugin.cab"> | |
| <param name="src" value="$1"`Close()`> | |
| <param name="controller" value="$4"`Close()`> | |
| <param name="autoplay" value="$5"`Close()`> | |
| <embed src="${1:movie.mov}" | |
| width="${2:320}" height="${3:240}" | |
| controller="${4:true}" autoplay="${5:true}" | |
| scale="tofit" cache="true" | |
| pluginspage="http://www.apple.com/quicktime/download/" | |
| `Close()[1:]`> | |
| </object>${6} | |
| snippet fieldset | |
| <fieldset id="$1"> | |
| <legend>${1:name}</legend> | |
| ${3} | |
| </fieldset> | |
| snippet form | |
| <form action="${1:`Filename('$1_submit')`}" method="${2:get}" accept-charset="utf-8"> | |
| ${3} | |
| <p><input type="submit" value="Continue →"`Close()`></p> | |
| </form> | |
| snippet h1 | |
| <h1 id="${1:heading}">${2:$1}</h1> | |
| snippet h2 | |
| <h2 id="${1:heading}">${2:$1}</h2> | |
| snippet h3 | |
| <h3 id="${1:heading}">${2:$1}</h3> | |
| snippet input | |
| <input type="${1:text/submit/hidden/button}" name="${2:some_name}" value="${3}"`Close()`>${4} | |
| snippet label | |
| <label for="${2:$1}">${1:name}</label> | |
| <input type="${3:text/submit/hidden/button}" name="${4:$2}" value="${5}" id="${6:$2}"`Close()`>${7} | |
| snippet link | |
| <link rel="${1:stylesheet}" href="${2:/css/master.css}" type="text/css" media="${3:screen}" charset="utf-8"`Close()`>${4} | |
| snippet mailto | |
| <a href="mailto:${1:joe@example.com}?subject=${2:feedback}">${3:email me}</a> | |
| snippet meta | |
| <meta name="${1:name}" content="${2:content}"`Close()`>${3} | |
| snippet opt | |
| <option value="${1:option}">${2:$1}</option>${3} | |
| snippet optt | |
| <option>${1:option}</option>${2} | |
| snippet select | |
| <select name="${1:some_name}" id="${2:$1}"> | |
| <option value="${3:option}">${4:$3}</option> | |
| </select>${5} | |
| snippet table | |
| <table border="${1:0}"> | |
| <tr><th>${2:Header}</th></tr> | |
| <tr><th>${3:Data}</th></tr> | |
| </table>${4} | |
| snippet textarea | |
| <textarea name="${1:Name}" rows="${2:8}" cols="${3:40}">${4}</textarea>${5} | |
| snippet art | |
| <article class="${1:name}"> | |
| ${2} | |
| </article> | |
| ${3} | |
| snippet sec | |
| <section class="${1:name}"> | |
| ${2} | |
| </section> | |
| ${3} | |
| snippet er | |
| <% ${1:ruby code} %> | |
| ${2} | |
| snippet re | |
| <%= ${1:ruby code} %>${2} | |
| snippet ea | |
| <% ${1:array}.each do |${2:item}|%> | |
| <% end %> | |
| snippet times | |
| <% ${1:count}.times do > | |
| ${2} | |
| <% end %> | |
| snippet if | |
| <% if ${1:condition} %> | |
| <% end %> | |
| snippet img | |
| <% img src=${1:http://placekitten.com/200/100} alt="${2:alternate}"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment