urbit/gen/cram.hoon

688 lines
21 KiB
Plaintext
Raw Normal View History

2017-07-16 03:59:57 +03:00
::
2017-07-24 09:19:53 +03:00
:::: hoon/cram/gen
2017-07-16 03:59:57 +03:00
::
2017-07-24 22:21:53 +03:00
:: test generator for the cram markdown syntax
::
:: todo: integrate with ++sail and embed in hoon compiler
::
:: ++cram is a simple markdown-inspired parser that makes
:: common html tropes easy to type. you can think of ++cram
:: as "rational markdown" or "markdown with syntax errors."
:: a document format should be easy to type and read, but
:: that doesn't mean it can't or have rigorous syntax.
::
2017-07-25 01:49:59 +03:00
:: tldr: ++cram is indent-oriented. indent 2 spaces for
2017-07-24 22:21:53 +03:00
:: a dynamic interpolation, 4 spaces for example code, 6
:: spaces for a blockquote and 8 spaces for verse. separate
2017-07-25 01:49:59 +03:00
:: every semantic block by a blank line. use - for
:: unordered lists, + for ordered lists.
::
2017-07-24 22:21:53 +03:00
:: markdown link syntax works. * means bold, _ means
:: italics, "" inserts smart quotes. all enclosed
:: strings are reparsed; escape the terminator within
:: the string, eg, *star \* in bold text*.
::
:: markdown `literal` syntax is supported, but all hoon
:: constants are automatically marked as code. also, any
2017-07-25 01:49:59 +03:00
:: hoon expression prefixed with # is a code literal.
2017-07-24 22:21:53 +03:00
::
:: (++cram is a valid hoon parsing rule, but it does a lot
:: of custom processing internally, since the language is
:: context-sensitive. we use a context-sensitive parser
:: to cut the lines into blocks, then reparse flow blocks
:: with normal hoon rules. multipass parsing is the tax
:: humans have to pay for simple but human-friendly syntax.)
::
2017-07-18 04:07:47 +03:00
:- %say
2017-07-24 02:00:45 +03:00
|= {^ {pax/path $~} $~}
2017-07-18 04:07:47 +03:00
:- %noun
2017-07-24 02:00:45 +03:00
=< (test pax)
2017-07-16 03:59:57 +03:00
=> |%
2017-07-18 04:07:47 +03:00
++ item (pair mite (list flow)) :: xml node generator
2017-07-16 03:59:57 +03:00
++ colm @ud :: column
2017-07-21 06:19:22 +03:00
++ flow manx :: node or generator
2017-07-18 04:07:47 +03:00
++ mite :: context
$? $down :: outer embed
$list :: unordered list
$lime :: list item
$lord :: ordered list
2017-07-19 06:19:27 +03:00
$poem :: verse
2017-07-18 04:07:47 +03:00
$bloc :: blockquote
$code :: preformatted code
2017-07-21 06:19:22 +03:00
$head :: heading
2017-07-19 06:19:27 +03:00
$expr :: dynamic expression
2017-07-21 06:19:22 +03:00
== ::
2017-07-16 03:59:57 +03:00
++ trig :: line style
2017-07-25 01:49:59 +03:00
$: col/@ud :: start column
2017-07-16 03:59:57 +03:00
$= sty :: style
2017-07-20 07:48:00 +03:00
$? $done :: terminator
2017-07-16 03:59:57 +03:00
$none :: end of input
$lint :: + line item
$lite :: - line item
$head :: # heading
$text :: anything else
== == ::
2017-07-21 06:19:22 +03:00
++ graf :: input fragment
2017-07-24 09:19:53 +03:00
$% {$bold p/(list graf)} :: *bold*
{$talc p/(list graf)} :: _italics_
{$quod p/(list graf)} :: "double quote"
2017-07-22 09:56:21 +03:00
{$code p/tape} :: code literal
{$text p/tape} :: text symbol
2017-07-24 09:19:53 +03:00
{$link p/(list graf) q/tape} :: URL
2017-07-21 06:19:22 +03:00
==
2017-07-16 03:59:57 +03:00
--
2017-07-25 01:49:59 +03:00
|% ::
2017-07-24 02:00:45 +03:00
++ test :: test text parsing
|= pax/path
^- tape
:: src: text file as (list cord)
:: txt: source as tape with newlines
:: vex: parsing result
::
=/ src .^(wain %cx pax)
=* txt (zing (turn src |=(@t (weld (rip 3 +<) `tape`~[`@`10]))))
=/ vex (cram [1 1] txt)
:: print result as error or xml text
::
?~ q.vex
"syntax error: line {(scow %ud p.p.vex)}, column {(scow %ud q.p.vex)}"
(poxo p.u.q.vex)
:: ::
++ cram :: parse unmark
2017-07-16 03:59:57 +03:00
|= {naz/hair los/tape}
2017-07-22 09:56:21 +03:00
^- (like flow)
2017-07-16 03:59:57 +03:00
::
2017-07-25 01:49:59 +03:00
:: state of the parsing loop. we maintain a construction
2017-07-24 22:21:53 +03:00
:: stack for elements and a line stack for lines in the
:: current block. a blank line causes the current block
:: to be parsed and thrown in the current element. when
:: the indent column retreats, the element stack rolls up.
::
2017-07-18 04:07:47 +03:00
:: err: error position
2017-07-16 03:59:57 +03:00
:: col: current control column
:: hac: stack of items under construction
:: cur: current item under construction
2017-07-20 07:48:00 +03:00
:: lub: current block being read in
2017-07-16 03:59:57 +03:00
::
2017-07-18 04:07:47 +03:00
=| err/(unit hair)
=/ col q.naz
2017-07-16 03:59:57 +03:00
=| hac/(list item)
2017-07-20 07:48:00 +03:00
=/ cur/item [%down ~]
2017-07-16 03:59:57 +03:00
=| lub/(unit (pair hair (list tape)))
2017-07-18 04:07:47 +03:00
=< $:line
2017-07-16 03:59:57 +03:00
|%
:: ::
2017-07-20 07:48:00 +03:00
++ $ :: resolve
2017-07-22 09:56:21 +03:00
^- (like flow)
2017-07-20 07:48:00 +03:00
:: if error position is set, produce error
2017-07-16 03:59:57 +03:00
::
2017-07-20 07:48:00 +03:00
?. =(~ err) [+.err ~]
:: all data was consumed
2017-07-16 03:59:57 +03:00
::
2017-07-20 07:48:00 +03:00
=- [naz `[- [naz los]]]
2017-07-22 09:56:21 +03:00
|- ^- flow
2017-07-20 07:48:00 +03:00
:: fold all the way to top
2017-07-16 03:59:57 +03:00
::
2017-07-22 09:56:21 +03:00
?~ hac fine
2017-07-20 07:48:00 +03:00
$(..^$ fold)
2017-07-16 03:59:57 +03:00
:: ::
++ back :: column retreat
2017-07-20 07:48:00 +03:00
|= luc/@ud
2017-07-18 04:07:47 +03:00
^+ +>
2017-07-20 07:48:00 +03:00
?: =(luc col) +>
:: nex: next backward step that terminates this context
::
=/ nex/@ud
?- p.cur
2017-07-24 09:19:53 +03:00
$down 2
2017-07-21 06:19:22 +03:00
$head 0
2017-07-20 07:48:00 +03:00
$expr 2
$list 0
$lime 2
$lord 0
$poem 8
$code 4
$bloc 6
==
?: (gth nex (sub col luc))
:: indenting pattern violation
::
2017-07-24 09:19:53 +03:00
..^$(col luc, err `[p.naz luc])
=. ..^$ fold
$(col (sub col nex))
2017-07-16 03:59:57 +03:00
:: ::
2017-07-20 07:48:00 +03:00
++ fine :: item to flow
^- flow
2017-07-24 09:19:53 +03:00
?: ?=($head p.cur)
?> ?=({* $~} q.cur)
i.q.cur
=- [[- ~] (flop q.cur)]
2017-07-20 07:48:00 +03:00
?+ p.cur !!
2017-07-24 09:19:53 +03:00
$down %div
2017-07-20 07:48:00 +03:00
$list %ul
$lord %ol
$lime %li
$bloc %bq
$code %pre
==
:: ::
++ fold ^+ . :: complete and pop
?~ hac .
%= .
hac t.hac
cur [p.i.hac [fine q.i.hac]]
==
:: ::
++ snap :: capture raw line
2017-07-16 03:59:57 +03:00
=| nap/tape
2017-07-20 07:48:00 +03:00
|- ^+ [nap +>]
:: no unterminated lines
::
?~ los [~ +>(err `naz)]
2017-07-25 01:49:59 +03:00
?: =(`@`10 i.los)
2017-07-20 07:48:00 +03:00
:: consume newline
::
:_ +>(los t.los, naz [+(p.naz) 1])
:: trim trailing spaces
::
2017-07-25 01:49:59 +03:00
|- ^- tape
?: ?=({$' ' *} nap)
$(nap t.nap)
2017-07-20 07:48:00 +03:00
(flop nap)
2017-07-21 06:19:22 +03:00
:: save byte and repeat
::
2017-07-20 07:48:00 +03:00
$(los t.los, q.naz +(q.naz), nap [i.los nap])
2017-07-16 03:59:57 +03:00
:: ::
2017-07-18 04:07:47 +03:00
++ skip +:snap :: discard line
2017-07-19 06:19:27 +03:00
++ look :: inspect line
^- (unit trig)
2017-07-20 07:48:00 +03:00
?~ los
`[q.naz %none]
?: =(`@`10 i.los)
~
?: =(' ' i.los)
look(los t.los, q.naz +(q.naz))
2017-07-21 06:19:22 +03:00
:+ ~ q.naz
2017-07-20 07:48:00 +03:00
?: =('\\' i.los)
%done
2017-07-24 09:19:53 +03:00
?: ?& =('#' i.los)
|- ^- ?
?~ t.los |
?: =(' ' i.t.los) &
?: =('#' i.t.los) $(t.los t.t.los)
|
==
2017-07-20 07:48:00 +03:00
%head
?: ?=({$'-' $' ' *} los)
%lite
2017-07-21 06:19:22 +03:00
?: ?=({$'+' $' ' *} los)
2017-07-20 07:48:00 +03:00
%lint
%text
:: ::
++ cape :: xml-escape
|= tex/tape
^- tape
?~ tex tex
=+ $(tex t.tex)
?+ i.tex [i.tex -]
$34 ['&' 'q' 'u' 'o' 't' ';' -]
$38 ['&' 'a' 'm' 'p' ';' -]
2017-07-24 09:19:53 +03:00
$39 ['&' 'a' 'p' 'o' 's' ';' -]
2017-07-20 07:48:00 +03:00
$60 ['&' 'l' 't' ';' -]
$62 ['&' 'g' 't' ';' -]
==
:: ::
2017-07-22 09:56:21 +03:00
++ clue :: tape to xml
|= tex/tape
^- manx
[[%$ [%$ tex] ~] ~]
:: ::
++ cash :: escaped fence
|* tem/rule
;~ sfix
%- star
=+ ;~(pose bas tem)
2017-07-25 01:49:59 +03:00
;~ pose
2017-07-24 09:19:53 +03:00
(cold ' ' whit)
;~(pose ;~(less - prn) ;~(pfix bas -))
==
2017-07-22 09:56:21 +03:00
::
tem
==
:: ::
2017-07-24 09:19:53 +03:00
++ cool :: reparse
|* $: :: fex: primary parser
:: sab: secondary parser
2017-07-22 09:56:21 +03:00
::
fex/rule
sab/rule
==
|= {naz/hair los/tape}
^+ *sab
2017-07-25 01:49:59 +03:00
::
2017-07-22 09:56:21 +03:00
:: vex: fenced span
::
=/ vex/(like tape) (fex naz los)
?~ q.vex vex
2017-07-25 01:49:59 +03:00
::
2017-07-22 09:56:21 +03:00
:: hav: reparse full fenced text
::
=/ hav ((full sab) [naz p.u.q.vex])
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: reparsed error position is always at start
2017-07-22 09:56:21 +03:00
::
2017-07-24 09:19:53 +03:00
?~ q.hav [naz ~]
2017-07-25 01:49:59 +03:00
::
2017-07-22 09:56:21 +03:00
:: the complete span with the main product
::
:- p.vex
`[p.u.q.hav q.u.q.vex]
:: ::
++ echo :: hoon literal
2017-07-24 09:19:53 +03:00
|* sab/rule
2017-07-22 09:56:21 +03:00
|= {naz/hair los/tape}
^- (like tape)
:: vex: result of parsing wide twig
::
2017-07-24 09:19:53 +03:00
=/ vex (sab naz los)
2017-07-22 09:56:21 +03:00
:: use result of expression parser
::
?~ q.vex vex
2017-07-25 01:49:59 +03:00
=- [p.vex `[- q.u.q.vex]]
2017-07-22 09:56:21 +03:00
:: but replace payload with bytes consumed
::
|- ^- tape
?: =(q.q.u.q.vex los) ~
?~ los ~
[i.los $(los +.los)]
:: ::
2017-07-24 09:19:53 +03:00
++ word :: flow parser
%+ knee *(list graf) |. ~+
2017-07-22 09:56:21 +03:00
;~ pose
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: whitespace
::
(cold [%text " "]~ whit)
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: ordinary word
::
%+ cook |=(graf [+< ~])
(stag %text ;~(plug ;~(pose low hig) (star ;~(pose nud low hig hep))))
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: naked \escape
::
%+ cook |=(@ [%text [+< ~]]~)
;~(pfix bas ;~(less ace prn))
2017-07-25 01:49:59 +03:00
::
2017-07-22 09:56:21 +03:00
:: *bold literal*
::
2017-07-24 09:19:53 +03:00
%+ cook |=(graf [+< ~])
(stag %bold ;~(pfix tar (cool (cash tar) work)))
2017-07-25 01:49:59 +03:00
::
2017-07-22 09:56:21 +03:00
:: _italic literal_
::
2017-07-24 09:19:53 +03:00
%+ cook |=(graf [+< ~])
(stag %talc ;~(pfix cab (cool (cash cab) work)))
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: "quoted text"
::
%+ cook |=(graf [+< ~])
(stag %quod ;~(pfix doq (cool (cash doq) work)))
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: `classic markdown quote`
2017-07-22 09:56:21 +03:00
::
2017-07-24 09:19:53 +03:00
%+ cook |=(graf [+< ~])
(stag %code ;~(pfix tec (cash tec)))
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: #twig
::
%+ cook |=(graf [+< ~])
(stag %code ;~(pfix hax (echo wide:vast)))
2017-07-25 01:49:59 +03:00
::
2017-07-22 09:56:21 +03:00
:: ++arm
::
2017-07-24 09:19:53 +03:00
%+ cook |=(graf [+< ~])
2017-07-22 09:56:21 +03:00
(stag %code ;~(plug lus lus low (star ;~(pose nud low hep))))
2017-07-25 01:49:59 +03:00
::
2017-07-22 09:56:21 +03:00
:: [arbitrary *content*](url)
::
2017-07-24 09:19:53 +03:00
%+ cook |=(graf [+< ~])
2017-07-22 09:56:21 +03:00
%+ stag %link
;~ plug
2017-07-24 09:19:53 +03:00
;~(pfix sel (cool (cash ser) work))
2017-07-22 09:56:21 +03:00
;~(pfix gay ;~(pfix pel (cash per)))
==
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: direct hoon constant
::
%+ cook |=(graf [+< ~])
%+ stag %code
%- echo
;~ pose
bisk:so
tash:so
;~(pfix dot perd:so)
;~(pfix sig ;~(pose twid:so (easy [%$ %n 0])))
;~(pfix cen ;~(pose sym buc pam bar qut nuck:so))
==
2017-07-25 01:49:59 +03:00
::
2017-07-24 09:19:53 +03:00
:: just a byte
2017-07-22 09:56:21 +03:00
::
2017-07-24 09:19:53 +03:00
(cook |=(@ [%text [+< ~]]~) ;~(less ace prn))
2017-07-22 09:56:21 +03:00
==
:: ::
2017-07-24 09:19:53 +03:00
++ work :: indefinite flow
%+ cook
|=((list (list graf)) (zing +<))
(star word)
:: ::
2017-07-22 09:56:21 +03:00
++ down :: parse inline flow
%+ knee *(list manx) |. ~+
2017-07-21 06:19:22 +03:00
%+ cook
2017-07-22 09:56:21 +03:00
:: collect raw flow into xml tags
::
|= gaf/(list graf)
^- (list manx)
:: nap: collected words
:: max: collected tags
::
=| fip/(list tape)
=| max/(list manx)
=< (flop max:main)
|% ::
2017-07-24 09:19:53 +03:00
++ fill %_ . :: unify text block
max :_(max (clue (zing (flop fip))))
2017-07-22 09:56:21 +03:00
fip ~
== ::
++ main ^+ . :: flow to
?~ gaf fill
?: ?=($text -.i.gaf)
2017-07-24 09:19:53 +03:00
main(gaf t.gaf, fip [(cape p.i.gaf) fip])
2017-07-22 09:56:21 +03:00
:: nex: first word in flow
:: mor: rest of flow
::
=> :- [nex=i.gaf mor=t.gaf]
2017-07-24 09:19:53 +03:00
:: combine accumulated text
2017-07-22 09:56:21 +03:00
::
fill
:: convert and accumulate fragment
::
2017-07-24 09:19:53 +03:00
=- main(gaf mor, max (weld - max))
^- (list manx)
2017-07-22 09:56:21 +03:00
?- -.nex
2017-07-24 09:19:53 +03:00
$bold [[%b ~] $(gaf p.nex)]~
$talc [[%i ~] $(gaf p.nex)]~
$code [[%code ~] (clue (cape p.nex)) ~]~
$quod :: smart quotes
::
%= $
gaf
:- [%text `@`226 `@`128 `@`156 ~]
%+ weld p.nex
`(list graf)`[%text `@`226 `@`128 `@`157 ~]~
==
$link [[%a [%href (cape q.nex)] ~] $(gaf p.nex)]~
2017-07-22 09:56:21 +03:00
==
--
2017-07-24 09:19:53 +03:00
work
2017-07-22 09:56:21 +03:00
:: ::
2017-07-24 02:00:45 +03:00
++ para :: paragraph
2017-07-24 09:19:53 +03:00
%+ cook
2017-07-25 01:49:59 +03:00
|=((list manx) [[%p ~] +<]~)
;~(pfix gay down) ::REVIEW does this mean comments work?
2017-07-24 02:00:45 +03:00
:: ::
2017-07-22 09:56:21 +03:00
++ whit :: whitespace
(cold ' ' (plus ;~(pose (just ' ') (just `@`10))))
2017-07-25 01:49:59 +03:00
::
2017-07-22 09:56:21 +03:00
++ head :: parse heading
2017-07-21 06:19:22 +03:00
%+ cook
2017-07-22 09:56:21 +03:00
|= $: :: a: list of #
:: b: tag flow of header line
::
a/tape
b/(list manx)
==
^- (list manx)
:: hag: header tag, h1 through h6
::
2017-07-24 09:19:53 +03:00
=* hag (cat 3 'h' (add '0' =+((lent a) ?:((gth - 6) 6 -))))
2017-07-22 09:56:21 +03:00
:: sid: header text flattened as id
::
=/ sid ^- tape
:: assemble, normalize and kebab-case
::
=- %- zing
%+ turn `(list tape)`(flop -)
|= tape ^- tape
%+ turn `tape`+<
|= @tD
^- @tD
?: ?| &((gte +< 'a') (lte +< 'z'))
&((gte +< '0') (lte +< '9'))
==
+<
?: &((gte +< 'A') (lte +< 'Z'))
(add 32 +<)
'-'
:: collect all text in header flow
::
=| ges/(list tape)
|- ^- (list tape)
?~ b ges
%= $
b t.b
ges
?: ?=({{$$ {$$ *} $~} $~} i.b)
:: capture text
::
[v.i.a.g.i.b ges]
:: descend into children
::
$(b c.i.b)
==
:: header as tag with id attribute
::
2017-07-24 09:19:53 +03:00
[[[hag [%id sid] ~] b] ~]
2017-07-22 09:56:21 +03:00
;~ plug
;~(sfix (star (just '#')) whit)
down
==
2017-07-21 06:19:22 +03:00
:: ::
2017-07-20 07:48:00 +03:00
++ made :: compose block
2017-07-25 01:49:59 +03:00
^+ .
2017-07-20 07:48:00 +03:00
:: empty block, no action
::
?~ lub .
:: if block is preformatted code
::
?: ?=($code p.cur)
:: add blank line between blocks
::
=. q.cur
?~ q.cur q.cur
2017-07-22 09:56:21 +03:00
:_(q.cur (clue `@`10 ~))
2017-07-20 07:48:00 +03:00
%= .
2017-07-25 01:49:59 +03:00
q.cur
2017-07-20 07:48:00 +03:00
%+ weld
%+ turn
q.u.lub
|= tape ^- flow
:: each line is text data with its newline
::
2017-07-24 09:19:53 +03:00
(clue (weld (slag (dec col) +<) `tape`[`@`10 ~]))
2017-07-20 07:48:00 +03:00
q.cur
==
:: if block is verse
::
?: ?=($poem p.cur)
:: add break between stanzas
::
=. q.cur ?~(q.cur q.cur [[[%br ~] ~] q.cur])
%= .
2017-07-25 01:49:59 +03:00
q.cur
2017-07-20 07:48:00 +03:00
%+ weld
%+ turn
q.u.lub
|= tape ^- flow
:: each line is a paragraph
::
:- [%p ~]
:_ ~
2017-07-24 09:19:53 +03:00
(clue (weld (slag (dec col) +<) `tape`[`@`10 ~]))
2017-07-20 07:48:00 +03:00
q.cur
==
2017-07-24 02:00:45 +03:00
:: yex: block recomposed, with newlines
::
2017-07-24 09:19:53 +03:00
=/ yex/tape
=/ hel (flop q.u.lub)
|- ^- tape
?~ hel ~
?~ t.hel i.hel
(weld i.hel `tape`[`@`10 $(hel t.hel)])
:: XX live expressions stubbed out
2017-07-20 07:48:00 +03:00
::
2017-07-21 06:19:22 +03:00
?< ?=($expr p.cur)
:: vex: parse of paragraph
2017-07-20 07:48:00 +03:00
::
2017-07-22 09:56:21 +03:00
=/ vex/(like (list manx))
2017-07-24 02:00:45 +03:00
:: either a one-line header or a paragraph
2017-07-22 09:56:21 +03:00
::
2017-07-24 02:00:45 +03:00
%.([p.u.lub yex] ?:(?=($head p.cur) head para))
2017-07-21 06:19:22 +03:00
:: if error, propagate correctly
::
?~ q.vex ..$(err `p.vex)
2017-07-24 09:19:53 +03:00
:: finish tag if it's a header
::
=< ?. =(%head p.cur) ..$ fold
:: save good result, clear buffer
2017-07-21 06:19:22 +03:00
::
2017-07-24 09:19:53 +03:00
..$(lub ~, q.cur (weld p.u.q.vex q.cur))
2017-07-25 01:49:59 +03:00
:: ::
2017-07-18 04:07:47 +03:00
++ line ^+ . :: body line loop
2017-07-16 03:59:57 +03:00
:: abort after first error
::
2017-07-19 06:19:27 +03:00
?: !=(~ err) .
2017-07-16 03:59:57 +03:00
:: pic: profile of this line
::
=/ pic look
:: if line is blank
::
2017-07-19 06:19:27 +03:00
?~ pic
2017-07-16 03:59:57 +03:00
:: break section
::
2017-07-19 06:19:27 +03:00
line:made:skip
2017-07-16 03:59:57 +03:00
:: line is not blank
::
=> .(pic u.pic)
2017-07-18 04:07:47 +03:00
:: if end of input, complete
2017-07-16 03:59:57 +03:00
::
2017-07-18 04:07:47 +03:00
?: ?=($none sty.pic)
..$(q.naz col.pic)
:: if end marker behind current column
2017-07-16 03:59:57 +03:00
::
2017-07-19 06:19:27 +03:00
?: &(?=($done sty.pic) (lth col.pic col))
2017-07-18 04:07:47 +03:00
:: retract and complete
2017-07-16 03:59:57 +03:00
::
2017-07-18 04:07:47 +03:00
(back(q.naz (add 2 col.pic)) col.pic)
2017-07-19 06:19:27 +03:00
:: bal: inspection copy of lub, current section
::
=/ bal lub
2017-07-18 04:07:47 +03:00
:: if within section
2017-07-16 03:59:57 +03:00
::
2017-07-19 06:19:27 +03:00
?^ bal
2017-07-18 04:07:47 +03:00
:: detect bad block structure
2017-07-16 03:59:57 +03:00
::
2017-07-21 06:19:22 +03:00
?: ?| :: only one line in a heading
::
=(%head p.cur)
2017-07-18 04:07:47 +03:00
?: ?=(?($code $poem $expr) p.cur)
2017-07-21 06:19:22 +03:00
:: literals need to end with a blank line
::
2017-07-18 04:07:47 +03:00
(lth col.pic col)
2017-07-21 06:19:22 +03:00
:: text flows must continue aligned
::
2017-07-19 06:19:27 +03:00
|(!=(%text sty.pic) !=(col.pic col))
2017-07-18 04:07:47 +03:00
==
..$(err `[p.naz col.pic])
:: accept line and continue
2017-07-25 01:49:59 +03:00
::
2017-07-20 07:48:00 +03:00
=^ nap ..$ snap
2017-07-19 06:19:27 +03:00
line(lub bal(q.u [nap q.u.bal]))
2017-07-18 04:07:47 +03:00
:: if column has retreated, adjust stack
2017-07-16 03:59:57 +03:00
::
2017-07-24 09:19:53 +03:00
=. ..$ ?. (lth col.pic col) ..$ (back col.pic)
2017-07-18 04:07:47 +03:00
:: dif: columns advanced
2017-07-19 06:19:27 +03:00
:: erp: error position
2017-07-16 03:59:57 +03:00
::
2017-07-18 04:07:47 +03:00
=/ dif (sub col.pic col)
2017-07-19 06:19:27 +03:00
=/ erp [p.naz col.pic]
2017-07-18 04:07:47 +03:00
=. col col.pic
:: nap: take first line
::
=^ nap ..$ snap
:: execute appropriate paragraph form
::
2017-07-19 19:53:34 +03:00
=< line:abet:apex
2017-07-18 04:07:47 +03:00
|%
2017-07-25 01:49:59 +03:00
:: ::
2017-07-18 04:07:47 +03:00
++ abet :: accept line
..$(lub `[naz nap ~])
:: ::
2017-07-19 06:19:27 +03:00
++ apex ^+ . :: by column offset
2017-07-18 04:07:47 +03:00
?+ dif fail
$0 apse
$2 expr
$4 code
$6 bloc
$8 poem
==
:: ::
2017-07-19 06:19:27 +03:00
++ apse ^+ . :: by prefix style
2017-07-18 04:07:47 +03:00
?- sty.pic
2017-07-19 06:19:27 +03:00
$done !!
2017-07-18 04:07:47 +03:00
$head head
$lite lite
$lint lint
$text text
==
:: ::
++ bloc apse:(push %bloc) :: blockquote line
2017-07-19 06:19:27 +03:00
++ fail .(err `erp) :: set error position
2017-07-20 07:48:00 +03:00
++ push |=(mite %_(+> hac [cur hac], cur [+< ~])) :: push context
2017-07-18 04:07:47 +03:00
++ expr (push %expr) :: hoon expression
++ code (push %code) :: code literal
++ poem (push %poem) :: verse literal
2017-07-21 06:19:22 +03:00
++ head (push %head) :: heading
2017-07-18 04:07:47 +03:00
++ lent :: list entry
|= ord/?
2017-07-19 06:19:27 +03:00
^+ +>
2017-07-18 04:07:47 +03:00
:: erase list marker
::
=. nap =+(+(col) (runt [- ' '] (slag - nap)))
:: indent by 2
::
=. col (add 2 col)
:: can't switch list types
::
?: =(?:(ord %list %lord) p.cur) fail
2017-07-20 07:48:00 +03:00
:: push list item
::
%. %lime
=< push
:: push list context, unless we're in list
2017-07-18 04:07:47 +03:00
::
=+ ?:(ord %lord %list)
2017-07-20 07:48:00 +03:00
?: =(- p.cur) ..push (push -)
2017-07-18 04:07:47 +03:00
::
++ lint (lent &) :: numbered list
++ lite (lent |) :: unnumbered list
++ text :: plain text
2017-07-19 06:19:27 +03:00
^+ .
2017-07-21 06:19:22 +03:00
:: only in lists, fold
2017-07-18 04:07:47 +03:00
::
?. ?=(?($list $lord) p.cur) .
2017-07-21 06:19:22 +03:00
.($ fold)
2017-07-18 04:07:47 +03:00
--
2017-07-16 03:59:57 +03:00
--
2017-07-18 04:07:47 +03:00
--