Skip to content

nochoice/emmet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors