koblog/bl-plugins/quill/quill-1.3.6/formats/underline.js

8 lines
160 B
JavaScript
Raw Normal View History

2018-10-18 19:21:57 +02:00
import Inline from '../blots/inline';
class Underline extends Inline { }
Underline.blotName = 'underline';
Underline.tagName = 'U';
export default Underline;