๐ฌComments
Corgi distinguishes between two types of comments:
HTML comments are included in your HTML while corgi comments are not.
p Hello
//- I'm included
p World!
// However, I am not.
//
As is
this block<p>Hello</p>
<!--I'm included-->
<p>World!</p>
Last updated
Was this helpful?