<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta content="text/html;charset=UTF-8" http-equiv="Content-Type"></head><body ><div style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt;"><div>Hi folks.<br></div><div><br></div><div>I am trying to get this text below<br></div><blockquote style="border: 1px solid rgb(204, 204, 204); padding: 7px; background-color: rgb(245, 245, 245);"><div><div>DocOrgToX is a set of Squeak Doc classes used to convert between CustomHelp to Markup and back again.<br></div><div><br></div><div>The DocCustomHelpToOrg and DocOrgToCustomHelp classes convert from CustomHelp to Org and back again.<br></div><div><br></div><div><br></div><div><br></div><div><a href="https://orgmode.org/guide/" target="_blank">https://orgmode.org/guide/</a><br></div><div><br></div><div>MCHttpRepository<br></div><div>    location: '<a href="http://www.squeaksource.com/Doc" target="_blank">http://www.squeaksource.com/Doc</a>'<br></div><div>    user: 'tty'<br></div><div>    password: ''<br></div></div></blockquote><div><br></div><div>  <br></div><div>into a string that I can use to create a method that returns a HelpTopic with that string above as its contents.<br></div><div><br></div><div><br></div><div><br></div><blockquote style="border: 1px solid rgb(204, 204, 204); padding: 7px; background-color: rgb(245, 245, 245);"><div><div>HelpTopic<br></div><div>title: 'Overview'<br></div><div>contents: ' that problematic string above goes here'.<br></div></div></blockquote><div><br></div><div>The method will return that above<br></div><div><br></div><div><div>'{1} ^HelpTopic     title: ' , ' {2}' ,  ' contents: ' , '{3}'  format: (Array with: 'overview '  with: ('My Overview' surroundedBySingleQuotes)  with: ('That problematic string above' surroundedBySingleQuotes)).<br></div><div><br></div><div><br></div></div><div><br></div><div>will give me a method to compile:<br></div><div><br></div><div><br></div><div><blockquote style="border: 1px solid rgb(204, 204, 204); padding: 7px; background-color: rgb(245, 245, 245);"><div>overview</div><div>^HelpTopic<br></div><div>title: 'My Overview'<br></div><div>contents: ' that problematic string above goes here'.<br></div></blockquote><br></div><div>I have tried a bunch of stuff with Streams and String methods and I keep getting compile errors around that problematic string.<br></div><div><br></div><div><br></div><div>thx in advance.</div></div><br></body></html>