Handbook
Glossary
remove-blank-text ( vector -- vector' )
Vocabulary
html
.
parser
.
analyzer
Inputs
vector
an
object
Outputs
vector'
an
object
Definition
USING:
accessors
html.parser
kernel
sequences
unicode
;
IN:
html.parser.analyzer
:
remove-blank-text
( vector -- vector' )
[
dup
name>>
text
=
[
text>>
[
blank?
]
all?
not
]
[
drop
t
]
if
]
filter
;