sup y sub; falta strings
This commit is contained in:
parent
cf93710b33
commit
89ad451524
2 changed files with 10 additions and 0 deletions
|
@ -27,6 +27,14 @@ const marks = {
|
||||||
selector: "u",
|
selector: "u",
|
||||||
createFn: () => document.createElement("U"),
|
createFn: () => document.createElement("U"),
|
||||||
},
|
},
|
||||||
|
sub: {
|
||||||
|
selector: "sub",
|
||||||
|
createFn: () => document.createElement("SUB"),
|
||||||
|
},
|
||||||
|
sup: {
|
||||||
|
selector: "sup",
|
||||||
|
createFn: () => document.createElement("SUP"),
|
||||||
|
},
|
||||||
mark: {
|
mark: {
|
||||||
selector: "mark",
|
selector: "mark",
|
||||||
createFn: () => document.createElement("MARK"),
|
createFn: () => document.createElement("MARK"),
|
||||||
|
|
|
@ -14,6 +14,8 @@
|
||||||
%button.btn{ data: { button: 'italic' } }= t('editor.italic')
|
%button.btn{ data: { button: 'italic' } }= t('editor.italic')
|
||||||
%button.btn{ data: { button: 'deleted' } }= t('editor.deleted')
|
%button.btn{ data: { button: 'deleted' } }= t('editor.deleted')
|
||||||
%button.btn{ data: { button: 'underline' } }= t('editor.underline')
|
%button.btn{ data: { button: 'underline' } }= t('editor.underline')
|
||||||
|
%button.btn{ data: { button: 'sup' } }= t('editor.sup')
|
||||||
|
%button.btn{ data: { button: 'sub' } }= t('editor.sub')
|
||||||
%button.btn{ data: { button: 'mark' } }= t('editor.mark')
|
%button.btn{ data: { button: 'mark' } }= t('editor.mark')
|
||||||
%button.btn{ data: { button: 'h1' } }= t('editor.h1')
|
%button.btn{ data: { button: 'h1' } }= t('editor.h1')
|
||||||
%button.btn{ data: { button: 'h2' } }= t('editor.h2')
|
%button.btn{ data: { button: 'h2' } }= t('editor.h2')
|
||||||
|
|
Loading…
Reference in a new issue