Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
themeEmacs
titlesynapeditor.config.js
'editor.defaultStyle': {
    'Body': 'font-family: Arial, Helvetica, sans-serif; font-size: 11pt; line-height: 1.2;',
    'Paragraph': '',
    'TextRun': '',
    'Div': '',
    'Image': '',
    'Video': '',
    'List': '',
    'ListItem': '',
    'Quote': '',
    'Table': '',
    'TableRow': '',
    'TableCell': '',
    'HorizontalLine': '',
    'Iframe': ''
},
  • Body: DOM에서 .se-contents영역을 의미합니다.
  • Paragraph: <p> tag를 의미합니다.
  • TextRun: <span> tag를 의미합니다.
  • Div: <div> tag를 의미합니다.
  • Image: <img> tag를 의미합니다.
  • Video: <video> tag를 의미합니다.
  • List: <ul> tag를 의미합니다.
  • ListItem: <li> tag를 의미합니다.
  • Quote: <blockquote> tag를 의미합니다.
  • Table: <table> tag를 의미합니다.
  • TableRow: <tr> tag를 의미합니다.
  • TableCell: <td> tag를 의미합니다.
  • HorizontalLine: <hr> tag를 의미합니다.
  • Iframe: <iframe> tag를 의미합니다.

...