confi-emacs-actual/abbrev_defs

32 lines
697 B
Plaintext
Raw Normal View History

2024-04-18 13:26:32 +02:00
;;-*-coding: utf-8;-*-
2024-04-22 02:18:08 +02:00
(define-abbrev-table 'mhtml-mode-abbrev-table
2024-04-18 13:26:32 +02:00
'(
("doc" "<!DOCTYPE html>
<html>
<head>
<meta charset=\"UTF-8\"/>
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
<title>Document</title>
</head>
<body>
</body>
2024-04-22 02:18:08 +02:00
</html>" nil :count 1)
2024-04-18 13:26:32 +02:00
("doctype" "<!DOCTYPE html>" nil :count 0)
))
2024-04-22 02:18:08 +02:00
(define-abbrev-table 'web-mode-abbrev-table
'(
("doc" "<!DOCTYPE html>
<html>
<head>
<meta charset=\"UTF-8\"/>
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
<title>Document</title>
</head>
<body>
</body>
</html>" nil :count 9)
("doctype" "<!DOCTYPE html>" nil :count 1)
))