Hello! I've prototyped a small addon for the help system. It allows the using of formatted text "a la wiki" for editing help pages. help pages are retrieved thanks to a pragma. In order to write an help, only 2 steps * Step1: You edit you help as follow: = Introduction Your intro here = Section 1 bla bla == Section 1.1 blo blo blo === Subsubsection 1.1.1 =Section 2 == Section 2.1 =Conclusion * Step 2: then you implement a method with a pragma that return the formatted string: Here, the help is in the comment of the class. SomeClass class>>help <wikiStyleHelp: #'A wiki style help example'> ^ self comment ... and you have your help (see screenshot) You also can use only a subpart of a comment by using a tag. <help> you wiki style comments here </help> It is very simple and it allows the using of comments (less help duplication ?). Concerning the builder approach, maybe we don't need it because we can use text markup. try it with HelpSystem-Core-AlainPlantec.69 in PharoTaskForces It works. not documented no tests Cheers Alain