Define tag classes from a tag name (e.g. "div") and some properties. This allows us to generate all our required classes with just a list of names.
Generate a helper function to create the tag using just the tag name instead of the full class name.
We separate the implementation so the 'replace' function doesn't have to parse irrelevant text which slows down compilation.
See Implementation
Define tag classes from a tag name (e.g. "div") and some properties. This allows us to generate all our required classes with just a list of names.