The .value() function on the Editor control strips out some elements from the Editor HTML. For instance, tables created in the Editor have a BR tag inside the table cells, but those BR tags are removed from the string returned by .value().
In order to display HTML exactly the same as it appears in the Editor, it would be useful to have an additional function, perhaps call it .rawValue(), that does not strip out these elements. For instance, with the BR example, if a row does not have any content the row will collapse without the BRs, so it would be nice to have an additional function that leaves them in.