class postcss.Comment
extends Node
Re-export
import { postcss } from "https://deno.land/x/bundler@0.6.5/deps.ts";
const { Comment } = postcss;
Represents a comment between declarations or statements (rule and at-rules).
Once (root, { Comment }) {
let note = new Comment({ text: 'Note: …' })
root.append(note)
}
Comments inside selectors, at-rule parameters, or declaration values
will be stored in the raws
properties explained above.
Constructors
new
Comment(defaults?: CommentProps)Methods
clone(overrides?: Partial<CommentProps>): this
cloneAfter(overrides?: Partial<CommentProps>): this
cloneBefore(overrides?: Partial<CommentProps>): this