srecode/web.srt
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 25 Dec 2023 20:15:49 +0200
changeset 1772 d97be992a1f9
parent 1411 3ed65138057b
permissions -rw-r--r--
Introduced Org state FAILED.


;; (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"/>
----