1.0.0 • Published 7 years ago

htmlc v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

#An HTML Preprocessor: Specify id and class in HTML with CSS style selectors ###Makes writing HTML more enjoyable than eating candy

	<div#title.box>    ---is preproccessed into--->    <div id='title' class='box'>

Allows for named end tags

	</div#title.box>    --->    </div>

(We all now how the end of a big HTML file looks like! Now you can understand it)

Allows script-style comments

	//<div#title.box>Comments</div#title.box>
	// These are completely removed from output, unlike HTML comments

The ^ symbol used for links

	<a^/about.html>About</a>    --->    <a href="about.html">About</a>
	<img^logo.png/>    --->    <img src="logo.png"/>

###Feel free to pull request/post issues