function getClosingStyle()

in src/emmetHelper.ts [730:738]


function getClosingStyle(syntax: string): string {
	switch (syntax) {
		case 'xhtml': return 'xhtml';
		case 'xml': return 'xml';
		case 'xsl': return 'xml';
		case 'jsx': return 'xhtml';
		default: return 'html';
	}
}