Fix $or
[factor/jcg.git] / extra / easy-help / expand-markup / expand-markup.factor
blob7550158c7e942bd0133bf0da7f4c27b841218623
2 USING: accessors arrays kernel lexer locals math namespaces parser
3        sequences splitting ;
5 IN: easy-help.expand-markup
7 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9 : scan-one-array ( string -- array rest )
10   string-lines
11   lexer-factory get call
12   [
13   [
14     \ } parse-until >array
15     lexer get line-text>>
16     lexer get column>> tail
17   ]
18   with-lexer
19   ]
20   with-scope ;
22 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
24 : contains-markup? ( string -- ? ) "{ $" swap subseq? ;
26 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28 :: expand-markup ( LINE -- lines )
29   
30   LINE contains-markup?
31     [
32     
33       [let | N [ "{ $" LINE start ] |
35         LINE N head
37         LINE N 2 + tail scan-one-array  dup " " head? [ 1 tail ] [ ] if
39         [ 2array ] dip
41         expand-markup
43         append ]
44         
45     ]
46     [ LINE 1array ]
47   if ;