There have been some new releases in the Rich Text Editor over the years, (http://docs.releasenotes.salesforce.com/he-il/winter15/release-notes/rn_general_html_editor_updates.htm), but we still have the problem of having 4 different HTML (or Rich Text) Editors. And now MORE with Lightning and Quill!
...
- Some lines of text get put over two lines
- Numbers are separated from their paragraph and separated by two lines.
- Many line breaks
...
This is not good. Not good at all.
This is the HTML it saved
Code Block |
---|
<div><p><br></p><p><br></p><p>A simple note document:</p><p><br></p><p><br></p><p>- </p><p>Would have some bullets</p><p><br></p><p><br></p><p>- </p><p>And another bullet</p><p><br></p><p><br></p><p>And maybe some <b>bold</b></p><p>and <i>italics</i> for emphasis:</p><p><br></p><p><br></p><p>1. </p><p>And a numbered list</p><p><br></p><p><br></p><p>2. </p><p>Continuing. </p><p><br></p><p><br></p><p>And a hyperlink to <a href="http://www.google.com/" target="_blank">google</a></p><p>for good measure. </p><p><br></p></div> |
Well, look I can be thankfull it didn't save ALL the word style info, so that is good. Now if it could just fix up the extra spacing then it might be on the right track.
Look, we ALL know that 90% of sales type people are going to write their notes in word and upload the word document, or paste it into notes. If you can't even get pasting from Word right, then we have a problem. How is this even going to work for Knowledge articles.
...
- Markdown style editing as an option - eg even Word has put stars around a word to make it bold (yes you can turn it off).
- This allows you to keep your hands on the keyboard.
- A predefined set of styles that the user can choose from in the corporate style guidelines - eg Heading 2 is always 1.2em Arial Bold.
- But ensuring that only <h2> is saved in the raw HTML that is saved, and that the styles are only applied by CSS in the text editor.
- But this depends on where the text is displayed and that that applies the styles consistently.
- And if it is in an email that it knows that it has to save the styles as inline styles into the raw HTML.
- The ability to paste images in or drag and drop them in, and if they come from a URL keep the URL (eg serving images up from an external CDN).
...
- Font Size
- Font Style
- Strikethrough
- Font Colour
- Background Colour