Shouldn’t the “Insert Quote” be a Power Up Rem that tags the Rem into a Rem of Quotations?
I see that it only highlights a text. I guess I just don’t see its difference from regular highlighting.
Shouldn’t the “Insert Quote” be a Power Up Rem that tags the Rem into a Rem of Quotations?
I see that it only highlights a text. I guess I just don’t see its difference from regular highlighting.
Nice use of it is re-styling the formatting to your preferred style, e.g. turn in into monospace for use with code. You may also like block quotes, which are implemented as tags.
Here’s a snippet to make quotes monospaced, also courtesy of Hannes.
.quote {
font-family: monospace;
}
Also, if you want to remove the highlight you can add:
background: transparent;
to the above code.