“Toda la documentacion aca” :http://www.sublimetext.com/docs/2/.
| Ctrl+C | (si no hay seleccion) Copia toda la linea |
| Ctrl+X | (si no hay seleccion) Corta toda la linea |
| Ctrl+⇧+K | Elimina la linea |
| Ctrl+↩ | Inserta salto de linea en linea anterior |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>polymer</title> | |
| <script src="https://rawgit.com/webcomponents/webcomponentsjs/master/webcomponents-lite.js"></script> | |
| <link rel="import" href="https://rawgit.com/Polymer/polymer/master/polymer.html"> | |
| </head> | |
| <body> | |
| <dom-module id="my-element"> |
“Toda la documentacion aca” :http://www.sublimetext.com/docs/2/.
| Ctrl+C | (si no hay seleccion) Copia toda la linea |
| Ctrl+X | (si no hay seleccion) Corta toda la linea |
| Ctrl+⇧+K | Elimina la linea |
| Ctrl+↩ | Inserta salto de linea en linea anterior |
| /** | |
| * WkHtmlToPdf table splitting hack. | |
| * | |
| * Script to automatically split multiple-pages-spanning HTML tables for PDF | |
| * generation using webkit. | |
| * | |
| * To use, you must adjust pdfPage object's contents to reflect your PDF's | |
| * page format. | |
| * The tables you want to be automatically splitted when the page ends must | |
| * have a class name of "splitForPrint" (can be changed). |
| <?php | |
| function emailAttachment($to, $fromName, $fromEmail, $subject, $message, $files) { | |
| $headers = "From: $fromName<$fromEmail>"; | |
| // boundary | |
| $semi_rand = md5(time()); | |
| $mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; | |
| // headers for attachment | |
| $headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\""; | |