121 lines
3.3 KiB
Factor
121 lines
3.3 KiB
Factor
USING: accessors assocs combinators html.parser
|
|
html.parser.utils io io.streams.string kernel math math.order
|
|
namespaces sequences strings unicode.categories ;
|
|
IN: html.parser.printer
|
|
|
|
TUPLE: html-printer ;
|
|
TUPLE: text-printer < html-printer ;
|
|
TUPLE: src-printer < html-printer ;
|
|
TUPLE: html-prettyprinter < html-printer ;
|
|
|
|
HOOK: print-text-tag html-printer ( tag -- )
|
|
HOOK: print-comment-tag html-printer ( tag -- )
|
|
HOOK: print-dtd-tag html-printer ( tag -- )
|
|
HOOK: print-opening-tag html-printer ( tag -- )
|
|
HOOK: print-closing-tag html-printer ( tag -- )
|
|
|
|
ERROR: unknown-tag-error tag ;
|
|
|
|
: print-tag ( tag -- )
|
|
{
|
|
{ [ dup name>> text = ] [ print-text-tag ] }
|
|
{ [ dup name>> comment = ] [ print-comment-tag ] }
|
|
{ [ dup name>> dtd = ] [ print-dtd-tag ] }
|
|
{ [ dup name>> string? ]
|
|
[
|
|
dup closing?>>
|
|
[ print-closing-tag ] [ print-opening-tag ] if
|
|
]
|
|
}
|
|
[ unknown-tag-error ]
|
|
} cond ;
|
|
|
|
: print-tags ( vector -- ) [ print-tag ] each ;
|
|
|
|
: html-text. ( vector -- )
|
|
T{ text-printer } html-printer [ print-tags ] with-variable ;
|
|
|
|
: html-text ( vector -- string )
|
|
[ html-text. ] with-string-writer ;
|
|
|
|
: html-src. ( vector -- )
|
|
T{ src-printer } html-printer [ print-tags ] with-variable ;
|
|
|
|
: html-src ( vector -- string )
|
|
[ html-src. ] with-string-writer ;
|
|
|
|
M: text-printer print-opening-tag
|
|
name>> {
|
|
{ "br" [ nl ] }
|
|
{ "ol" [ nl ] }
|
|
{ "ul" [ nl ] }
|
|
{ "li" [ " * " write ] }
|
|
[ drop ]
|
|
} case ;
|
|
|
|
M: text-printer print-closing-tag
|
|
name>>
|
|
[
|
|
{ "p" "blockquote" "h1" "h2" "h3" "h4" "h5" }
|
|
member? [ nl nl ] when
|
|
]
|
|
[
|
|
{ "ul" "ol" "li" "tr" } member? [ nl ] when
|
|
]
|
|
[ "td" = [ bl ] when ] tri ;
|
|
|
|
M: text-printer print-comment-tag drop ;
|
|
|
|
M: html-printer print-text-tag ( tag -- )
|
|
text>> write ;
|
|
|
|
M: html-printer print-comment-tag ( tag -- )
|
|
"<!--" write text>> write "-->" write ;
|
|
|
|
M: html-printer print-dtd-tag ( tag -- )
|
|
"<!" write text>> write ">" write ;
|
|
|
|
: print-attributes ( hashtable -- )
|
|
[ [ bl write "=" write ] [ ?quote write ] bi* ] assoc-each ;
|
|
|
|
M: src-printer print-opening-tag ( tag -- )
|
|
"<" write
|
|
[ name>> write ]
|
|
[ attributes>> dup assoc-empty? [ drop ] [ print-attributes ] if ] bi
|
|
">" write ;
|
|
|
|
M: src-printer print-closing-tag ( tag -- )
|
|
"</" write
|
|
name>> write
|
|
">" write ;
|
|
|
|
SYMBOL: tab-width
|
|
SYMBOL: #indentations
|
|
SYMBOL: tagstack
|
|
|
|
: prettyprint-html ( vector -- )
|
|
[
|
|
T{ html-prettyprinter } html-printer set
|
|
V{ } clone tagstack set
|
|
2 tab-width set
|
|
0 #indentations set
|
|
print-tags
|
|
] with-scope ;
|
|
|
|
: tabs ( -- vseq )
|
|
tab-width get #indentations get 0 max * CHAR: \s <repetition> ;
|
|
|
|
M: html-prettyprinter print-opening-tag ( tag -- )
|
|
name>>
|
|
[ tabs write "<" write write ">\n" write ]
|
|
! These tags usually don't have any closing tag associated with them.
|
|
[ { "br" "img" } member? [ #indentations inc ] unless ] bi ;
|
|
|
|
M: html-prettyprinter print-closing-tag ( tag -- )
|
|
! These tags usually don't have any closing tag associated with them.
|
|
[ { "br" "img" } member? [ #indentations dec ] unless ]
|
|
[ tabs write "</" write name>> write ">\n" write ] bi ;
|
|
|
|
M: html-prettyprinter print-text-tag ( tag -- )
|
|
text>> [ blank? ] trim [ tabs write write "\n" write ] unless-empty ;
|