123

123

werweewrw
class ShinePointMoveInterpolator implements Interpolator {
    @Override
    public float getInterpolation(float input) {
        return 0;
    }
}

Workspace in classic editors is made of a single contenteditable element, used to create different HTML markups. Editor.js workspace consists of separate Blocks: paragraphs, headings, images, lists, quotes, etc. Each of them is an independent contenteditable element (or more complex structure) provided by Plugin and united by Editor's Core.


Report Page