Skip to content

Instantly share code, notes, and snippets.

@joeriks
Created March 4, 2013 07:40
Show Gist options
  • Save joeriks/5080682 to your computer and use it in GitHub Desktop.
Save joeriks/5080682 to your computer and use it in GitHub Desktop.
Add custsom tags to razor
this:
@helper CustomTag(InnerTemplate inner) {
<div class="this">
<div class="that">
@inner
</div>
</div>
}
makes me able to do this:
<h1>cool:</h1>
<CustomTag>
<i>with contents</i>
</CustomTag>
makes sense?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment