# polymer-tags **Repository Path**: mirrors_googlearchive/polymer-tags ## Basic Information - **Project Name**: polymer-tags - **Description**: Deprecated: Early experiment with Polymer and JS template literals - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # polymer-tags Template-literal-based templates for Polymer 2.0 ## 🚧 This is a deprecated early experiment. Please see lit-html 🚧 This code was an initial attempt to add template-literal based templates directly to Polymer 2 as a mixin. These ideas were brough into lit-html as a standalone library, but this code is useful for archeology on how to wire up extensions to Polymer's template system. This repo is unmaintained, please use lit-html instead: https://github.com/PolymerLabs/lit-html ## Example ```javascript import {Element as PolymerElement} from './node_modules/@polymer/polymer/polymer-element.js'; import {Tags, html} from './tags.js'; class TagsDemo extends Tags(PolymerElement) { static get properties() { return { name: String, age: Number, }}; constructor() { super(); this.name = 'Justin'; this.age = 41; } render() { return html`