htmlFetchF :: F String String
htmlFetchF
is a simplifiled version of urlFetchF for fetching HTML documents.
The following program displays documents fetched from URLs entered by the user.
import Fudgets import InternetLibmain = fudlogue (shellF "TestHtmlFetchF" mainF)
mainF = moreF >==< mapF lines >==< htmlFetchF >==< stringInputF
A more general fudget: urlFetchF.
Parsing HTML: parseHtml