.CodeMirror {border: 2px solid #dee; border-right-width: 10px;} .CodeMirror-gutter {border: none; background: #dee;} .CodeMirror-gutter pre {color: white; font-weight: bold;}
CodeMirror
Home Manual Code
Language modes Smalltalk
Smalltalk mode
" This is a test of the Smalltalk code " Seaside.WAComponent subclass: #MyCounter [ | count | MyCounter class >> canBeRoot [ ^true ]
initialize [ super initialize. count := 0. ] states [ ^{ self } ] renderContentOn: html [ html heading: count. html anchor callback: [ count := count + 1 ]; with: '++'. html space. html anchor callback: [ count := count - 1 ]; with: '--'. ] ]
MyCounter registerAsApplication: 'mycounter'
var editor = CodeMirror.fromTextArea(document.getElementById("code"), { lineNumbers: true, matchBrackets: true, mode: "text/x-stsrc", indentUnit: 4 });
Simple Smalltalk mode.
MIME types defined: text/x-stsrc .