Stylament 0.28.3

Edits

The ins and del elements represent edits to the document.

Related

Spec [external]

MDN [external]

del

scss
del {
  @if map.get(cfg.$merged, coloring, color, logical, del) {
    @include coloring.set-colors("del");
    @include coloring.use-colors;
  }
}

Deletion.

Related

Spec [external]

MDN [external]

ins

scss
ins {
  @if map.get(cfg.$merged, coloring, color, logical, ins) {
    @include coloring.set-colors("ins");
    @include coloring.use-colors;
  }
}

Insertion.

Related

Spec [external]

MDN [external]