Closed Cloud-Awesome closed 3 years ago
Started implementing during test refactoring, but most of the methods take this as an input.
e.g.
var table = new MdTable() .AddColumn("First Column") .AddColumn("Second Column") .AddColumn("Third Column");
instead of
var table = new MdTable() .AddColumn(new MdPlainText("First Column")) .AddColumn(new MdPlainText("Second Column")) .AddColumn(new MdPlainText("Third Column"));
Keep the original for backwards compatibility though
Required/Outstanding for following methods:
During this, perhaps review:
Add
Started implementing during test refactoring, but most of the methods take this as an input.
e.g.
instead of
Keep the original for backwards compatibility though