Skip to content

Instantly share code, notes, and snippets.

Created January 26, 2013 11:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4641759 to your computer and use it in GitHub Desktop.
Save anonymous/4641759 to your computer and use it in GitHub Desktop.
Test__c test = [select RichText__c from Test__c where id = 'a00G0000008S1SJ'];
String altText = 'Some text';
altText += '\r\n';
altText += 'MoreText';
test.RichText__c = '<p><img src="http://www.bob.com/bob.jpg" alt="'+altText+'"></img></p>' ;
update test;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment