Skip to content

Instantly share code, notes, and snippets.

@chy4egg
Last active December 19, 2017 10:05
Show Gist options
  • Save chy4egg/779ba9747382c0f03a3a8ecdf266f730 to your computer and use it in GitHub Desktop.
Save chy4egg/779ba9747382c0f03a3a8ecdf266f730 to your computer and use it in GitHub Desktop.
Pug mixin
//- Declaration
mixin pet(name)
li.pet= name
//- Use
ul
+pet('cat')
+pet('dog')
+pet('pig')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment