Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Correct indentation of html snippet to match auto indent #151

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion snippets/language-html.cson
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
'body': '<hr>'
'HTML':
'prefix': 'html'
'body': '<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<meta charset="utf-8">\n\t\t<title>$1</title>\n\t</head>\n\t<body>\n\t\t$2\n\t</body>\n</html>'
'body': '<!DOCTYPE html>\n<html>\n<head>\n\t<meta charset="utf-8">\n\t<title>$1</title>\n</head>\n<body>\n\t$2\n</body>\n</html>'
# I
'Italic':
'prefix': 'i'
Expand Down