ingenta-lens
Version:
A novel way of seeing content.
22 lines (15 loc) • 469 B
JavaScript
var Annotation = require('../annotation/annotation');
var Emphasis = function(node, doc) {
Annotation.call(this, node, doc);
};
Emphasis.type = {
id: "emphasis",
parent: "annotation",
properties: {}
};
Emphasis.Prototype = function() {};
Emphasis.Prototype.prototype = Annotation.prototype;
Emphasis.prototype = new Emphasis.Prototype();
Emphasis.prototype.constructor = Emphasis;
Emphasis.fragmentation = Annotation.DONT_CARE;
module.exports = Emphasis;