| : .' '' parse postpone SLiteral postpone type ; immediate |
: .' '' parse postpone SLiteral postpone type ; immediate |
| : s' '' parse postpone SLiteral ; immediate |
: s' '' parse postpone SLiteral ; immediate |
| |
|
| |
Variable indentlevel |
| Variable tag-option |
Variable tag-option |
| s" " tag-option $! |
s" " tag-option $! |
| |
|
| : tag ( addr u -- ) '< emit type tag-option $@ type '> emit |
: tag ( addr u -- ) '< emit type tag-option $@ type '> emit |
| s" " tag-option $! ; |
s" " tag-option $! ; |
| |
: tag/ ( addr u -- ) s" /" tag-option $+! tag ; |
| : /tag ( addr u -- ) '< emit '/ emit type '> emit ; |
: /tag ( addr u -- ) '< emit '/ emit type '> emit ; |
| : tagged ( addr1 u1 addr2 u2 -- ) 2dup 2>r tag type 2r> /tag ; |
: tagged ( addr1 u1 addr2 u2 -- ) 2dup 2>r tag type 2r> /tag ; |
| |
|
| tag-option $+! s' ="' tag-option $+! tag-option $+! |
tag-option $+! s' ="' tag-option $+! tag-option $+! |
| s' "' tag-option $+! ; |
s' "' tag-option $+! ; |
| : href= ( addr u -- ) s" href" opt ; |
: href= ( addr u -- ) s" href" opt ; |
| : name= ( addr u -- ) s" name" opt ; |
: id= ( addr u -- ) s" id" opt ; |
| : src= ( addr u -- ) s" src" opt ; |
: src= ( addr u -- ) s" src" opt ; |
| : alt= ( addr u -- ) s" alt" opt ; |
: alt= ( addr u -- ) s" alt" opt ; |
| : width= ( addr u -- ) s" width" opt ; |
: width= ( addr u -- ) s" width" opt ; |
| : height= ( addr u -- ) s" height" opt ; |
: height= ( addr u -- ) s" height" opt ; |
| : align= ( addr u -- ) s" align" opt ; |
: align= ( addr u -- ) s" align" opt ; |
| |
: class= ( addr u -- ) s" class" opt ; |
| |
: indent= ( -- ) |
| |
indentlevel @ 0 <# #S 'p hold #> class= ; |
| : mailto: ( addr u -- ) s' href="mailto:' tag-option $+! |
: mailto: ( addr u -- ) s' href="mailto:' tag-option $+! |
| tag-option $+! s' "' tag-option $+! ; |
tag-option $+! s' "' tag-option $+! ; |
| |
|
| |
|
| : >align ( c -- ) |
: >align ( c -- ) |
| CASE |
CASE |
| 'l OF s" left" align= ENDOF |
'l OF s" left" class= ENDOF |
| 'r OF s" right" align= ENDOF |
'r OF s" right" class= ENDOF |
| 'c OF s" center" align= ENDOF |
'c OF s" center" class= ENDOF |
| '< OF s" left" align= ENDOF |
'< OF s" left" class= ENDOF |
| '> OF s" right" align= ENDOF |
'> OF s" right" class= ENDOF |
| '= OF s" center" align= ENDOF |
'= OF s" center" class= ENDOF |
| '~ OF s" absmiddle" align= ENDOF |
'~ OF s" absmiddle" class= ENDOF |
| ENDCASE ; |
ENDCASE ; |
| |
|
| : >talign ( c -- ) |
: >talign ( c -- ) |
| |
|
| : >border ( c -- ) |
: >border ( c -- ) |
| case |
case |
| '- of s" 0" s" border" opt endof |
'- of s" border0" class= endof |
| '+ of s" 1" s" border" opt endof |
'+ of s" border1" class= endof |
| endcase ; |
endcase ; |
| |
|
| \ image handling |
\ image handling |
| dup IF 2swap alt= ELSE 2drop THEN |
dup IF 2swap alt= ELSE 2drop THEN |
| tag-option $@len >r over c@ >align tag-option $@len r> = 1+ /string |
tag-option $@len >r over c@ >align tag-option $@len r> = 1+ /string |
| tag-option $@len >r over c@ >border tag-option $@len r> = 1+ /string |
tag-option $@len >r over c@ >border tag-option $@len r> = 1+ /string |
| 2dup .img-size src= s" img" tag ; |
2dup .img-size src= s" img" tag/ ; |
| : >img ( -- ) '{ parse type '} parse .img ; |
: >img ( -- ) '{ parse type '} parse .img ; |
| |
|
| : alt-suffix ( -- ) |
: alt-suffix ( -- ) |
| pad swap 2dup link-suffix $@ filename-match |
pad swap 2dup link-suffix $@ filename-match |
| IF s" icons/" iconpath $! iconpath $+! |
IF s" icons/" iconpath $! iconpath $+! |
| iconpath $@ 2dup .img-size src= '- >border |
iconpath $@ 2dup .img-size src= '- >border |
| alt-suffix s" img" tag true |
alt-suffix s" img" tag/ true |
| ELSE 2drop false THEN |
ELSE 2drop false THEN |
| UNTIL ELSE drop THEN |
UNTIL ELSE drop THEN |
| r> close-dir throw ; |
r> close-dir throw ; |
| BEGIN parse-line+ cr refill WHILE |
BEGIN parse-line+ cr refill WHILE |
| source nip 0= UNTIL THEN ; |
source nip 0= UNTIL THEN ; |
| |
|
| : par ( addr u -- ) env? 2dup tag parse-par /tag cr cr ; |
: par ( addr u -- ) env? indent= |
| |
2dup tag parse-par /tag cr cr ; |
| : line ( addr u -- ) env? 2dup tag parse-line+ /tag cr cr ; |
: line ( addr u -- ) env? 2dup tag parse-line+ /tag cr cr ; |
| |
|
| \ scan strings |
\ scan strings |
| THEN |
THEN |
| s" a" /tag rdrop |
s" a" /tag rdrop |
| ; |
; |
| : print-toc ( -- ) cr 0 parse |
: print-toc ( -- ) cr s" menu" id= s" div" tag cr 0 parse |
| dup 0= IF toc-name $! 0 ELSE |
dup 0= IF toc-name $! 0 ELSE |
| toc-name $! toc-name $@ name= s" " s" a" tagged 2 |
toc-name $! toc-name $@ id= s" " s" a" tagged 2 |
| THEN >r |
THEN >r |
| toc-link BEGIN @ dup WHILE |
toc-link BEGIN @ dup WHILE |
| dup cell+ @ 3 = r@ 0= and IF rdrop 1 >r s" br" tag cr THEN |
dup cell+ @ 3 = r@ 0= and IF rdrop 1 >r ( s" br" tag/ cr ) THEN |
| dup cell+ @ r@ >= IF dup r@ 2 = .toc-entry THEN |
dup cell+ @ r@ >= IF dup r@ 2 = .toc-entry THEN |
| dup cell+ @ 2 = r@ 2 = and IF s" br" tag cr THEN |
dup cell+ @ 2 = r@ 2 = and IF s" br" tag/ cr THEN |
| REPEAT drop rdrop cr ; |
REPEAT drop rdrop cr s" div" /tag cr ; |
| |
|
| \ handle global tags |
\ handle global tags |
| |
|
| Variable indentlevel |
: indent ( n -- ) |
| : indent ( n -- ) indentlevel @ over indentlevel ! |
\ indentlevel @ over |
| 2dup < IF swap DO -env -env LOOP EXIT THEN |
indentlevel ! |
| 2dup > IF DO s" dl" >env s" dt" >env LOOP EXIT THEN |
\ 2dup < IF swap DO -env -env LOOP EXIT THEN |
| 2dup = IF drop IF -env s" dt" >env THEN THEN ; |
\ 2dup > IF DO s" dl" >env s" dt" >env LOOP EXIT THEN |
| : +indent ( -- ) indentlevel @ IF -env s" dd" >env THEN ; |
\ 2dup = IF drop IF -env s" dt" >env THEN THEN |
| |
; |
| |
: +indent ( -- ) |
| |
\ indentlevel @ IF -env s" dd" >env THEN |
| |
; |
| |
|
| wordlist constant longtags |
wordlist constant longtags |
| |
|
| |
Variable divs |
| |
|
| longtags set-current |
longtags set-current |
| |
|
| : --- 0 indent cr s" hr" tag cr +indent ; |
: --- 0 indent cr s" hr" tag/ cr +indent ; |
| : * 1 indent s" h1" line +indent ; |
: * 1 indent s" h1" line +indent ; |
| : ** 1 indent s" h2" line +indent ; |
: ** 1 indent s" h2" line +indent ; |
| : *** 2 indent s" h3" line +indent ; |
: *** 2 indent s" h3" line +indent ; |
| : -- 0 indent cr print-toc ; |
: -- 0 indent cr print-toc ; |
| : && 0 parse name= s" " s" a" tagged ; |
: && ( -- ) divs @ IF -env THEN +env |
| |
0 parse id= s" div" env divs on ; |
| : - s" ul" env s" li" par ; |
: - s" ul" env s" li" par ; |
| : + s" ol" env s" li" par ; |
: + s" ol" env s" li" par ; |
| : << +env ; |
: << +env ; |
| : <* s" center" >env ; |
: <* s" center" class= s" p" >env ; |
| : <red s" #ff0000" s" color" opt s" font" >env ; |
: <red s" #ff0000" s" color" opt s" font" >env ; |
| : red> -env ; |
: red> -env ; |
| : >> -env ; |
: >> -env ; |
| : *> -env ; |
: *> -env ; |
| : :: interpret ; |
: :: interpret ; |
| : . end-sec on 0 indent ; |
: . end-sec on 0 indent ; |
| : :code s" pre" >env |
: :code indent= s" pre" >env |
| BEGIN source >in @ /string type cr refill WHILE |
BEGIN source >in @ /string type cr refill WHILE |
| source s" :endcode" str= UNTIL THEN |
source s" :endcode" str= UNTIL THEN |
| -env ; |
-env ; |
| |
|
| \ HTML head |
\ HTML head |
| |
|
| |
Variable css-file |
| |
|
| : .title ( addr u -- ) |
: .title ( addr u -- ) |
| .' <!doctype html public "-//w3c//dtd html 4.0 transitional//en">' cr |
.' <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//en" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' cr |
| s" html" >env s" head" >env |
s" html" >env s" head" >env cr |
| .' <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">' cr |
s" Content-Type" s" http-equiv" opt |
| |
s" text/xhtml; charset=iso-8859-1" s" content" opt |
| |
s" meta" tag/ |
| |
css-file $@len IF |
| |
s" StyleSheet" s" rel" opt |
| |
css-file $@ href= |
| |
s" text/css" s" type" opt s" link" tag/ |
| |
THEN |
| s" title" tagged cr |
s" title" tagged cr |
| -env ; |
-env ; |
| |
|
| 0 u.r ; |
0 u.r ; |
| |
|
| : .trailer |
: .trailer |
| s" address" >env s" center" >env |
s" center" class= s" address" >env |
| orig-date @ IF ." Created " orig-date $@ type ." . " THEN |
orig-date @ IF ." Created " orig-date $@ type ." . " THEN |
| .lastmod |
.lastmod |
| ." by " |
." by " |
| warnings ! |
warnings ! |
| : vlink ( -- ) parse" s" vlink" style ; |
: vlink ( -- ) parse" s" vlink" style ; |
| : marginheight ( -- ) parse" s" marginheight" style ; |
: marginheight ( -- ) parse" s" marginheight" style ; |
| |
: css ( -- ) parse" css-file $! ; |
| |
|
| : wf ( -- ) |
: wf ( -- ) |
| outfile-id >r |
outfile-id >r |