()
| 3092 | } |
| 3093 | |
| 3094 | function checkInContainerSyntax () { |
| 3095 | // if line starts with :::, it's in container syntax |
| 3096 | var line = editor.getLine(editor.getCursor().line) |
| 3097 | isInContainerSyntax = (line.substr(0, 3) === ':::') |
| 3098 | } |
| 3099 | |
| 3100 | function matchInContainer (text) { |
| 3101 | var match |