Skip to content

v0.0.2

Choose a tag to compare

@robert-virkus robert-virkus released this 27 Feb 20:15
· 84 commits to main since this release
  • Improve documentation.
  • Retrieve the full HTML document's text with await editorApi.getFullHtml()
  • Add any custom CSS styles with editorApi.customStyles setter, for example
    editorApi.customStyles = 
      '''
      blockquote {
          font: normal helvetica, sans-serif;
          margin-top: 10px;
          margin-bottom: 10px;
          margin-left: 20px;
          padding-left: 15px;
          border-left: 3px solid #ccc;
      }
      ''';
  • Replace all CSS styles with the editorApi.styles setter.
  • Use the minimum height specified in HtmlEditor.minHeight.