Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 576 Bytes

File metadata and controls

23 lines (20 loc) · 576 Bytes

Emmet

  • please create an class called Emmet
  • this class
  • should have constructor with one parameter of type string
  • should have one public method called parse with one string parameter

Parse method

Has one string parameter which on the input gets an emmet string and it's output should be regular html The input will look like: table>tr>td*2

and the autput should be:

<table>
	<tr>
		<td></td>
		<td></td>
	</tr>
</table>

Please use typescript. More about emmet you can find here