Skip to content

Commit

Permalink
2.38.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JiHong88 authored Apr 27, 2021
2 parents 6952b70 + f6dd103 commit 48d8322
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/options.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ export interface SunEditorOptions {
*/
defaultTag?: string;
/**
* You can change the tag of the default text button. default: { bold: 'STRONG', underline: 'U', italic: 'EM', strike: 'DEL' }
* You can change the tag of the default text button. default: { bold: 'STRONG', underline: 'U', italic: 'EM', strike: 'DEL', sub: 'SUB', sup: 'SUP' }
*/
textTags?: {bold: string; underline: string; italic: string; strike: string;};
textTags?: { bold?: string; underline?: string; italic?: string; strike?: string; sub?: string; sup?: string;};
/**
* Initial value(html string) of the edit area.
* If not, the value of the "target textarea".
Expand Down

0 comments on commit 48d8322

Please sign in to comment.