author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Thu, 31 Dec 2020 00:20:03 +0200 | |
changeset 1656 | 0445e8ee4912 |
parent 1411 | 3ed65138057b |
permissions | -rw-r--r-- |
;; (setq srecode-mode-table-list nil) ;; (srecode-load-tables-for-mode 'web-mode) ;; (srecode-dump-templates "web-mode") set mode "web-mode" set escape_start "{{" set escape_end "}}" set comment_start "<!--" set comment_end "--!>" set comment_prefix "" context file template empty "Fill out an empty file." ---- <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>{{?TITLE}}</title> </head> <body> {{^}} </body> </html> ---- bind "h" ;; prompt NAME "Name for declaration: " template tag "" ---- <{{?NAME}}>{{^}}</{{NAME}}> ---- bind "t" template js :indent ---- <script src="{{^}}"></script> ---- bind "j" template js-inline :indent ---- <script> {{^}} </script> ---- template css :indent ---- <link rel="stylesheet" type="text/css" href="{{^}}"> ---- bind "c" template css-inline :indent ---- <style> {{^}} </style> ---- template meta-charset :indent ---- <meta charset="{{^}}"/> ---- template meta-viewport :indent ---- <meta name="viewport" content="width=device-width; initial-scale=1.0"/> ----