Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fed_dev/deps.ts>postcss.Comment

A Bundler with the web in mind.
Latest
class postcss.Comment
extends Node
Re-export
import { postcss } from "https://deno.land/x/fed_dev@0.9.0/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)

Properties

parent: Container | undefined
raws: CommentRaws
text: string

The comment's text.

type: "comment"

Methods

assign(overrides: object | CommentProps): this
clone(overrides?: Partial<CommentProps>): this
cloneAfter(overrides?: Partial<CommentProps>): this
cloneBefore(overrides?: Partial<CommentProps>): this