[squeak-dev] Squeaksource.com swiki formatting ?

Chris Cunnington brasspen at gmail.com
Sun Apr 2 19:20:59 UTC 2017


SqueakSource doesn’t use a Swiki, which is very large. It uses a TinyWiki object for each project, which does not have any wiki syntax tokens for the <code> tag. 

TWScanner>>#scannerDefinitionComment

"<newline>		: \r? \n | \r ;
<blankLine>		: <newline> <newline> ;

<rule>			: \_[\ \t]* ;
<header>			: \!+ ;
<list>			: [\#\-\=] ;

<linkText>		: [^\*\r\n] ;
<link>			: \* <linkText>+ \* ;
<nonLinkStart>	: \*\* | \\ [\#\-\=\!\*] ;

<text>			: [^\r\n\*\!\#\-\=\\]+ ;
<any>			: . ;”

No bold, italic, pre or code tags. 

Off the top of my head, I'd suggest you leave a link and do the work on the Squeak Swiki. Put asterisks around your link. 
*http://wiki.squeak.org/squeak/Morphic*

Or put code between rule tags created by underscores. 
_
Arduino code: 
// comment
void loop {
}
_

Chris 



More information about the Squeak-dev mailing list