cite method

Ins cite(
  1. String url, {
  2. bool? removeIf,
})

This attribute defines the URI of a resource that explains the change, such as a link to meeting minutes or a ticket in a troubleshooting system. Read more...

Implementation

Ins cite(String url, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('cite', url);
    node.attrs!.add(attr);
  }
  return this;
}